{ "$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" ] }