Name of the schedule configured for a night 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/CallQueueNightSchedulesObject",
"title": "CallQueueNightSchedulesObject",
"type": "object",
"required": [
"scheduleName",
"scheduleLevel"
],
"properties": {
"scheduleName": {
"type": "string",
"example": "Working Hours",
"description": "Name of the schedule configured for a night 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"
}
}
}