Webex · Schema

MonitoringSettings

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
callParkNotificationEnabled boolean Call park notification is enabled or disabled.
monitoredElements array Settings of monitored elements which can be person, place, virtual line or call park extension.
View JSON Schema on GitHub

JSON Schema

webex-monitoringsettings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MonitoringSettings",
  "title": "MonitoringSettings",
  "type": "object",
  "required": [
    "callParkNotificationEnabled",
    "monitoredElements"
  ],
  "properties": {
    "callParkNotificationEnabled": {
      "type": "boolean",
      "example": true,
      "description": "Call park notification is enabled or disabled."
    },
    "monitoredElements": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/GetMonitoredElementsObject"
      },
      "description": "Settings of monitored elements which can be person, place, virtual line or call park extension."
    }
  }
}