Adyen · Schema

CashHandlingDevice

Indicate the status and the remaining coins and bill in a cash handling device. Status of cash handling device.

PaymentsFinancial ServicesFintech

Properties

Name Type Description
CashHandlingOKFlag boolean Indicates if the cash handling device is working and usable.
Currency string Currency of a monetary amount.
CoinsOrBills array
View JSON Schema on GitHub

JSON Schema

adyen-cashhandlingdevice-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CashHandlingDevice",
  "title": "CashHandlingDevice",
  "type": "object",
  "description": "Indicate the status and the remaining coins and bill in a cash handling device. Status of cash handling device.",
  "properties": {
    "CashHandlingOKFlag": {
      "type": "boolean",
      "description": "Indicates if the cash handling device is working and usable."
    },
    "Currency": {
      "type": "string",
      "pattern": "^[A-Z]{3,3}$",
      "description": "Currency of a monetary amount."
    },
    "CoinsOrBills": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CoinsOrBills"
      }
    }
  },
  "required": [
    "CashHandlingOKFlag",
    "Currency",
    "CoinsOrBills"
  ]
}