Adyen · JSON Structure

Terminal Coins Or Bills Structure

Indicates the remaining number of coins or bills of a given value in a cash handling device. When the cash handling machine does not have any more coins or bills of a certain value, the number must be equal to 0. Number of coins or bills of a given value.

Type: object Properties: 2 Required: 2
PaymentsFinancial ServicesFintech

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

Properties

UnitValue Number

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-coins-or-bills-structure.json",
  "description": "Indicates the remaining number of coins or bills of a given value in a cash handling device. When the cash handling machine does not have any more coins or bills of a certain value, the number must be equal to 0. Number of coins or bills of a given value.",
  "type": "object",
  "properties": {
    "UnitValue": {
      "type": "double",
      "maximum": 99999999.999999,
      "minimum": 0,
      "description": "Value of a coin or bill."
    },
    "Number": {
      "type": "int32",
      "description": "Number of elements."
    }
  },
  "required": [
    "UnitValue",
    "Number"
  ],
  "name": "CoinsOrBills"
}