{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/terminal-payment-acquirer-data-structure.json", "description": "Data related to the response from the payment Acquirer.", "type": "object", "properties": { "AcquirerID": { "type": "int32", "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" ], "name": "PaymentAcquirerData" }