Adyen · Schema
SaleData
Data associated to the Sale System, with a particular value during the processing of the payment by the POI, including the cards acquisition. Data related to the Sale System.
PaymentsFinancial ServicesFintech
Properties
| Name | Type | Description |
|---|---|---|
| OperatorID | string | |
| OperatorLanguage | string | if different from the Login. |
| ShiftNumber | string | if different from the Login and see Login .SaleData. |
| SaleTransactionID | object | |
| SaleReferenceID | string | If payment reservation. |
| SaleTerminalData | object | |
| TokenRequestedType | object | |
| CustomerOrderID | string | Additional and optional identification of a customer order. |
| CustomerOrderReq | object | |
| SaleToPOIData | string | Stored with the transaction. |
| SaleToAcquirerData | string | Send to the Acquirer if present. |
| SaleToIssuerData | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SaleData",
"title": "SaleData",
"type": "object",
"description": "Data associated to the Sale System, with a particular value during the processing of the payment by the POI, including the cards acquisition. Data related to the Sale System.",
"properties": {
"OperatorID": {
"type": "string",
"pattern": "^.+$"
},
"OperatorLanguage": {
"type": "string",
"pattern": "^[a-z]{2,2}$",
"description": "if different from the Login."
},
"ShiftNumber": {
"type": "string",
"pattern": "^.+$",
"description": "if different from the Login and see Login .SaleData."
},
"SaleTransactionID": {
"$ref": "#/components/schemas/TransactionIDType"
},
"SaleReferenceID": {
"type": "string",
"pattern": "^.+$",
"description": "If payment reservation."
},
"SaleTerminalData": {
"$ref": "#/components/schemas/SaleTerminalData"
},
"TokenRequestedType": {
"$ref": "#/components/schemas/TokenRequestedType"
},
"CustomerOrderID": {
"type": "string",
"pattern": "^.+$",
"description": "Additional and optional identification of a customer order."
},
"CustomerOrderReq": {
"$ref": "#/components/schemas/CustomerOrderReq"
},
"SaleToPOIData": {
"type": "string",
"pattern": "^.+$",
"description": "Stored with the transaction."
},
"SaleToAcquirerData": {
"type": "string",
"pattern": "^.+$",
"description": "Send to the Acquirer if present."
},
"SaleToIssuerData": {
"$ref": "#/components/schemas/SaleToIssuerData"
}
},
"required": [
"SaleTransactionID"
]
}