{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/configuration-paginated-account-holders-response-structure.json", "description": "PaginatedAccountHoldersResponse schema from Adyen API", "type": "object", "properties": { "accountHolders": { "description": "List of account holders.", "items": { "$ref": "#/components/schemas/AccountHolder" }, "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": [ "accountHolders", "hasPrevious", "hasNext" ], "name": "PaginatedAccountHoldersResponse" }