{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/configuration-webhooks-balance-structure.json", "description": "Balance schema from Adyen API", "type": "object", "properties": { "available": { "description": "The remaining amount available for spending.", "type": "int64" }, "balance": { "description": "The total amount in the balance.", "type": "int64" }, "currency": { "description": "The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes) of the balance.", "type": "string" }, "pending": { "description": "The amount pending to be paid out but not yet available in the balance.", "type": "int64" }, "reserved": { "description": "The amount reserved for payments that have been authorised, but have not been captured yet.", "type": "int64" } }, "required": [ "currency", "balance", "reserved", "available" ], "name": "Balance" }