{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BalanceSweepConfigurationsResponse", "title": "BalanceSweepConfigurationsResponse", "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" ], "type": "object" }