{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UserScheduleListGetResponse", "title": "UserScheduleListGetResponse", "type": "object", "description": "Lists all the schedules for the authenticated user. Also includes LOCATION level schedules for the user's location.", "example": { "schedules": [ { "id": "Y2lzY29zcGFyazovL3VzL1VTRVJfU0NIRURVTEUvVTJOb1pXUjFiR1V4", "name": "Schedule1", "type": "businessHours", "level": "PEOPLE" }, { "id": "Y2lzY29zcGFyazovL3VzL1VTRVJfU0NIRURVTEUvVkdWaGJTQkliMnhwWkdGNQ", "name": "Team Holiday", "type": "holidays", "level": "LOCATION" } ] }, "properties": { "schedules": { "type": "array", "description": "List of schedules", "items": { "$ref": "#/components/schemas/UserSchedule" } } } }