{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/terminal-amounts-req-structure.json", "description": "Amounts of a payment", "type": "object", "properties": { "Currency": { "type": "string", "pattern": "^[A-Z]{3,3}$" }, "RequestedAmount": { "type": "double", "maximum": 99999999.999999, "minimum": 0 }, "CashBackAmount": { "type": "double", "maximum": 99999999.999999, "minimum": 0 }, "TipAmount": { "type": "double", "maximum": 99999999.999999, "minimum": 0 }, "PaidAmount": { "type": "double", "maximum": 99999999.999999, "minimum": 0 }, "MinimumAmountToDeliver": { "type": "double", "maximum": 99999999.999999, "minimum": 0 }, "MaximumCashBackAmount": { "type": "double", "maximum": 99999999.999999, "minimum": 0 }, "MinimumSplitAmount": { "type": "double", "maximum": 99999999.999999, "minimum": 0 } }, "required": [ "Currency", "RequestedAmount" ], "name": "AmountsReq" }