Webex · Schema

CriteriaForward

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Criteria ID.
scheduleName string Name of the Schedule to which the criteria is created.
source object Indicates the sources for which selective call forward is applied.
forwardEnabled boolean Boolean flag to enable/disable selective call forward.
View JSON Schema on GitHub

JSON Schema

webex-criteriaforward-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CriteriaForward",
  "title": "CriteriaForward",
  "type": "object",
  "required": [
    "source"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL0NSSVRFUklBL1oxNzI5NzA4NzUwMTY4MDI",
      "description": "Criteria ID."
    },
    "scheduleName": {
      "type": "string",
      "example": "CFS-Criteria-F-2",
      "description": "Name of the Schedule to which the criteria is created."
    },
    "source": {
      "$ref": "#/components/schemas/Source",
      "description": "Indicates the sources for which selective call forward is applied."
    },
    "forwardEnabled": {
      "type": "boolean",
      "example": true,
      "description": "Boolean flag to enable/disable selective call forward."
    }
  }
}