{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/configuration-balance-sweep-configurations-response-schema.json", "title": "BalanceSweepConfigurationsResponse", "description": "BalanceSweepConfigurationsResponse schema from Adyen API", "type": "object", "properties": { "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" }, "sweeps": { "description": "List of sweeps associated with the balance account.", "items": { "$ref": "#/components/schemas/SweepConfigurationV2" }, "type": "array" } }, "required": [ "sweeps", "hasPrevious", "hasNext" ] }