Webex · Schema

DialPlan

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Unique identifier for the dial plan.
name string A unique name for the dial plan.
routeId string ID of route type associated with the dial plan.
routeName string Name of route type associated with the dial plan.
routeType object Route Type associated with the dial plan.
View JSON Schema on GitHub

JSON Schema

webex-dialplan-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DialPlan",
  "title": "DialPlan",
  "type": "object",
  "required": [
    "id",
    "name",
    "routeId",
    "routeName",
    "routeType"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL0RJQUxfUExBTi8wNTlhMjczZS1iYmIwLTExZWMtODQyMi0wMjQyYWMxMjAwMDI",
      "description": "Unique identifier for the dial plan."
    },
    "name": {
      "type": "string",
      "example": "dialPlanName",
      "description": "A unique name for the dial plan."
    },
    "routeId": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1JPVVRFX0dST1VQLzA1OWEyNzNlLWJiYjAtMTFlYy04NDIyLTAyNDJhYzEyMDAwMg",
      "description": "ID of route type associated with the dial plan."
    },
    "routeName": {
      "type": "string",
      "example": "routeName",
      "description": "Name of route type associated with the dial plan."
    },
    "routeType": {
      "$ref": "#/components/schemas/RouteType",
      "description": "Route Type associated with the dial plan."
    }
  }
}