{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UserSchedule", "title": "UserSchedule", "type": "object", "description": "Individual Schedule configuration.", "required": [ "id", "name", "type", "level" ], "properties": { "id": { "type": "string", "description": "Unique identifier for the schedule.", "example": "Y2lzY29zcGFyazovL3VzL1VTRVJfU0NIRURVTEUvVTJOb1pXUjFiR1V4" }, "name": { "type": "string", "description": "Name of the schedule.", "example": "Schedule1" }, "type": { "type": "string", "enum": [ "businessHours", "holidays" ], "description": " * `businessHours` - The schedule is for business hours.\n * `holidays` - The schedule is for holidays.\n" }, "level": { "type": "string", "enum": [ "PEOPLE", "LOCATION" ], "description": " * `PEOPLE` - The schedule is at the user level.\n * `LOCATION` - The schedule is at the location level.\n" } } }