{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/configuration-webhooks-balance-schema.json", "title": "Balance", "description": "Balance schema from Adyen API", "type": "object", "properties": { "available": { "description": "The remaining amount available for spending.", "format": "int64", "type": "integer" }, "balance": { "description": "The total amount in the balance.", "format": "int64", "type": "integer" }, "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.", "format": "int64", "type": "integer" }, "reserved": { "description": "The amount reserved for payments that have been authorised, but have not been captured yet.", "format": "int64", "type": "integer" } }, "required": [ "currency", "balance", "reserved", "available" ] }