{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PaymentAcquirerData", "title": "PaymentAcquirerData", "type": "object", "description": "Data related to the response from the payment Acquirer.", "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" ] }