Webex · Schema
UserSchedule
Individual Schedule configuration.
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the schedule. |
| name | string | Name of the schedule. |
| type | string | * `businessHours` - The schedule is for business hours. * `holidays` - The schedule is for holidays. |
| level | string | * `PEOPLE` - The schedule is at the user level. * `LOCATION` - The schedule is at the location level. |
JSON Schema
{
"$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"
}
}
}