Webex · Schema

BusinessContinuityPatch

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enabled boolean Business Continuity is enabled or disabled.
destination string Destination for Business Continuity.
destinationVoicemailEnabled boolean Enabled or disabled state of sending incoming calls to the destination number's voicemail if the destination is an internal phone number and that number has the voicemail service enabled.
View JSON Schema on GitHub

JSON Schema

webex-businesscontinuitypatch-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BusinessContinuityPatch",
  "title": "BusinessContinuityPatch",
  "type": "object",
  "required": [
    "enabled",
    "destinationVoicemailEnabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean",
      "example": true,
      "description": "Business Continuity is enabled or disabled."
    },
    "destination": {
      "type": "string",
      "example": "2225551212",
      "description": "Destination for Business Continuity."
    },
    "destinationVoicemailEnabled": {
      "type": "boolean",
      "description": "Enabled or disabled state of sending incoming calls to the destination number's voicemail if the destination is an internal phone number and that number has the voicemail service enabled."
    }
  }
}