Adyen · Schema

CoinsOrBills

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.

PaymentsFinancial ServicesFintech

Properties

Name Type Description
UnitValue number Value of a coin or bill.
Number integer Number of elements.
View JSON Schema on GitHub

JSON Schema

adyen-coinsorbills-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CoinsOrBills",
  "title": "CoinsOrBills",
  "type": "object",
  "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.",
  "properties": {
    "UnitValue": {
      "type": "number",
      "maximum": 99999999.999999,
      "minimum": 0,
      "description": "Value of a coin or bill."
    },
    "Number": {
      "type": "integer",
      "description": "Number of elements."
    }
  },
  "required": [
    "UnitValue",
    "Number"
  ]
}