Webex · Schema
HoursMenuObject
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| greeting | string | Greeting type defined for the auto attendant. |
| extensionEnabled | boolean | Flag to indicate if auto attendant extension is enabled or not. |
| audioAnnouncementFile | object | Announcement Audio File details. |
| keyConfigurations | object | Key configurations defined for the auto attendant. |
| callTreatment | object | Call treatment details. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/HoursMenuObject",
"title": "HoursMenuObject",
"type": "object",
"required": [
"greeting",
"extensionEnabled",
"keyConfigurations"
],
"properties": {
"greeting": {
"type": "string",
"enum": [
"DEFAULT",
"CUSTOM"
],
"description": "Greeting type defined for the auto attendant."
},
"extensionEnabled": {
"type": "boolean",
"example": true,
"description": "Flag to indicate if auto attendant extension is enabled or not."
},
"audioAnnouncementFile": {
"$ref": "#/components/schemas/AudioAnnouncementFileObject",
"description": "Announcement Audio File details."
},
"keyConfigurations": {
"$ref": "#/components/schemas/KeyConfigurationsObject",
"description": "Key configurations defined for the auto attendant."
},
"callTreatment": {
"$ref": "#/components/schemas/CallTreatmentObject",
"description": "Call treatment details."
}
}
}