Adyen · JSON Structure

Terminal Cash Handling Device Structure

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

Type: object Properties: 3 Required: 3
PaymentsFinancial ServicesFintech

CashHandlingDevice is a JSON Structure definition published by Adyen, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

CashHandlingOKFlag Currency CoinsOrBills

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/terminal-cash-handling-device-structure.json",
  "description": "Indicate the status and the remaining coins and bill in a cash handling device. Status of cash handling device.",
  "type": "object",
  "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"
  ],
  "name": "CashHandlingDevice"
}