Webex · Schema

SimultaneousRingCriteriaSummary

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Unique identifier for criteria.
scheduleName string Name of the schedule which determines when the simultaneous ring is in effect.
source object
ringEnabled boolean When set to `true` simultaneous ringing is enabled for calls that meet this criteria. Criteria with `ringEnabled` set to `false` take priority.
View JSON Schema on GitHub

JSON Schema

webex-simultaneousringcriteriasummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SimultaneousRingCriteriaSummary",
  "title": "SimultaneousRingCriteriaSummary",
  "type": "object",
  "required": [
    "id",
    "source",
    "ringEnabled"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL0NSSVRFUklBLzg2NTAxZDFlLTg1MWMtNDgwYi1hZmE2LTA5MTU4NzQ3NzdmZQ",
      "description": "Unique identifier for criteria."
    },
    "scheduleName": {
      "type": "string",
      "example": "Business Vacation",
      "description": "Name of the schedule which determines when the simultaneous ring is in effect."
    },
    "source": {
      "$ref": "#/components/schemas/Source"
    },
    "ringEnabled": {
      "type": "boolean",
      "example": true,
      "description": "When set to `true` simultaneous ringing is enabled for calls that meet this criteria. Criteria with `ringEnabled` set to `false` take priority."
    }
  }
}