Adyen · Schema
OfflineProcessing
OfflineProcessing schema from Adyen API
PaymentsFinancial ServicesFintech
Properties
| Name | Type | Description |
|---|---|---|
| chipFloorLimit | integer | The maximum offline transaction amount for chip cards, in the processing currency and specified in [minor units](https://docs.adyen.com/development-resources/currency-codes). |
| offlineSwipeLimits | array | The maximum offline transaction amount for swiped cards, in the specified currency. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/management-offline-processing-schema.json",
"title": "OfflineProcessing",
"description": "OfflineProcessing schema from Adyen API",
"type": "object",
"properties": {
"chipFloorLimit": {
"description": "The maximum offline transaction amount for chip cards, in the processing currency and specified in [minor units](https://docs.adyen.com/development-resources/currency-codes).",
"format": "int32",
"type": "integer"
},
"offlineSwipeLimits": {
"description": "The maximum offline transaction amount for swiped cards, in the specified currency.",
"items": {
"$ref": "#/components/schemas/MinorUnitsMonetaryValue"
},
"type": "array"
}
}
}