Name of the schedule configured for a holiday service.
scheduleLevel
string
Indicates whether the schedule in scheduleName is specific to the organization or location. * `LOCATION` - Schedule is configured across a location. * `ORGANIZATION` - Schedule is configured across an
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CallQueueHolidaySchedulesObject",
"title": "CallQueueHolidaySchedulesObject",
"type": "object",
"required": [
"scheduleName",
"scheduleLevel"
],
"properties": {
"scheduleName": {
"type": "string",
"example": "2022 All Holidays",
"description": "Name of the schedule configured for a holiday service."
},
"scheduleLevel": {
"type": "string",
"enum": [
"LOCATION",
"ORGANIZATION"
],
"description": "Indicates whether the schedule in scheduleName is specific to the organization or location.\n * `LOCATION` - Schedule is configured across a location.\n * `ORGANIZATION` - Schedule is configured across an organization.\n"
}
}
}