{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/terminal-payment-response-schema.json", "title": "PaymentResponse", "description": "It conveys Information related to the Payment transaction processed by the POI System. Content of the Payment Response message.", "type": "object", "properties": { "Response": { "$ref": "#/components/schemas/Response" }, "SaleData": { "$ref": "#/components/schemas/SaleData" }, "POIData": { "$ref": "#/components/schemas/POIData" }, "PaymentResult": { "$ref": "#/components/schemas/PaymentResult" }, "LoyaltyResult": { "type": "array", "items": { "$ref": "#/components/schemas/LoyaltyResult" } }, "PaymentReceipt": { "type": "array", "items": { "$ref": "#/components/schemas/PaymentReceipt" } }, "CustomerOrder": { "type": "array", "items": { "$ref": "#/components/schemas/CustomerOrder" } } }, "required": [ "Response", "SaleData", "POIData" ] }