{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ListUserSchedulesResponse", "title": "ListUserSchedulesResponse", "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string", "description": "Schedule ID." }, "name": { "type": "string", "description": "Schedule name." } } }, "description": "List of schedules the user belongs to." }, "took": { "type": "number", "description": "Time taken in seconds." }, "requestId": { "type": "string", "description": "Unique identifier for the request." } } }