Webex · Schema

DoNotDisturbGet

Do Not Disturb settings response object containing DND configuration for the user.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enabled boolean Indicates if Do Not Disturb is enabled.
ringSplashEnabled boolean Indicates if ring splash is enabled while DND is active.
webexGoOverrideEnabled boolean Indicates if Webex Go override is enabled while DND is active.
View JSON Schema on GitHub

JSON Schema

webex-donotdisturbget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DoNotDisturbGet",
  "title": "DoNotDisturbGet",
  "type": "object",
  "description": "Do Not Disturb settings response object containing DND configuration for the user.",
  "properties": {
    "enabled": {
      "type": "boolean",
      "description": "Indicates if Do Not Disturb is enabled."
    },
    "ringSplashEnabled": {
      "type": "boolean",
      "description": "Indicates if ring splash is enabled while DND is active."
    },
    "webexGoOverrideEnabled": {
      "type": "boolean",
      "description": "Indicates if Webex Go override is enabled while DND is active."
    }
  },
  "example": {
    "enabled": true,
    "ringSplashEnabled": false,
    "webexGoOverrideEnabled": false
  }
}