{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Receipt", "title": "Receipt", "description": "Information about the receipt for changed orders.", "required": [ "date", "orderId", "receipt" ], "type": "object", "properties": { "date": { "type": "string", "description": "Date when the receipt was created." }, "orderId": { "type": "string", "description": "ID of the order." }, "receipt": { "type": "string", "description": "Receipt's unique identifier code." } }, "example": { "date": "2019-02-06T20:46:04.4003606+00:00", "orderId": "v5195004lux-01", "receipt": "029f9ab8-751a-4b1e-bf81-7dd25d14b49b" } }