{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/configuration-paginated-balance-accounts-response-structure.json", "description": "PaginatedBalanceAccountsResponse schema from Adyen API", "type": "object", "properties": { "balanceAccounts": { "description": "List of balance accounts.", "items": { "$ref": "#/components/schemas/BalanceAccountBase" }, "type": "array" }, "hasNext": { "description": "Indicates whether there are more items on the next page.", "type": "boolean" }, "hasPrevious": { "description": "Indicates whether there are more items on the previous page.", "type": "boolean" } }, "required": [ "balanceAccounts", "hasPrevious", "hasNext" ], "name": "PaginatedBalanceAccountsResponse" }