Adyen · Schema
TransactionConditions
Conditions on which the transaction must be processed.
PaymentsFinancial ServicesFintech
Properties
| Name | Type | Description |
|---|---|---|
| AllowedPaymentBrand | array | |
| AcquirerID | array | |
| DebitPreferredFlag | boolean | The preferred type of payment is a debit transaction rather a credit transaction. |
| AllowedLoyaltyBrand | array | |
| LoyaltyHandling | object | |
| CustomerLanguage | string | If the language is selected by the Sale System before the request to the POI. |
| ForceOnlineFlag | boolean | Go online if data sent. |
| ForceEntryMode | object | |
| MerchantCategoryCode | string | The payment implies a specific MCC. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TransactionConditions",
"title": "TransactionConditions",
"type": "object",
"description": "Conditions on which the transaction must be processed.",
"properties": {
"AllowedPaymentBrand": {
"type": "array",
"items": {
"type": "string",
"pattern": "^.+$",
"description": "Restrict brand if data sent."
}
},
"AcquirerID": {
"type": "array",
"items": {
"type": "integer",
"description": "Restrict to these Acquirer if present."
}
},
"DebitPreferredFlag": {
"type": "boolean",
"description": "The preferred type of payment is a debit transaction rather a credit transaction."
},
"AllowedLoyaltyBrand": {
"type": "array",
"items": {
"type": "string",
"pattern": "^.+$",
"description": "Restrict brand if data sent."
}
},
"LoyaltyHandling": {
"$ref": "#/components/schemas/LoyaltyHandling"
},
"CustomerLanguage": {
"type": "string",
"pattern": "^[a-z]{2,2}$",
"description": "If the language is selected by the Sale System before the request to the POI."
},
"ForceOnlineFlag": {
"type": "boolean",
"default": false,
"description": "Go online if data sent."
},
"ForceEntryMode": {
"$ref": "#/components/schemas/ForceEntryMode"
},
"MerchantCategoryCode": {
"type": "string",
"pattern": "^.{3,4}$",
"description": "The payment implies a specific MCC."
}
}
}