{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/terminal-payment-acquirer-data-schema.json", "title": "PaymentAcquirerData", "description": "Data related to the response from the payment Acquirer.", "type": "object", "properties": { "AcquirerID": { "type": "integer", "description": "If several Acquirers." }, "MerchantID": { "type": "string", "pattern": "^.+$", "description": "Identification of the Merchant for the Acquirer." }, "AcquirerPOIID": { "type": "string", "pattern": "^.+$", "description": "Identification of the POI for the payment Acquirer." }, "AcquirerTransactionID": { "$ref": "#/components/schemas/TransactionIDType" }, "ApprovalCode": { "type": "string", "pattern": "^.+$", "description": "If available." }, "HostReconciliationID": { "type": "string", "pattern": "^.+$" } }, "required": [ "MerchantID", "AcquirerPOIID" ] }