{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/HoursMenuGetObject", "title": "HoursMenuGetObject", "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/AudioAnnouncementFileGetObject", "description": "Announcement Audio File details." }, "keyConfigurations": { "$ref": "#/components/schemas/KeyConfigurationsGetObject", "description": "Key configurations defined for the auto attendant." }, "callTreatment": { "$ref": "#/components/schemas/CallTreatmentObject", "description": "Call treatment details." } } }