Webex · Schema

RouteListGet

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
name string Route list name.
location object Location associated with the Route List.
routeGroup object Route group associated with the Route list.
View JSON Schema on GitHub

JSON Schema

webex-routelistget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RouteListGet",
  "title": "RouteListGet",
  "type": "object",
  "required": [
    "name",
    "location"
  ],
  "properties": {
    "name": {
      "type": "string",
      "example": "Route List 01",
      "description": "Route list name."
    },
    "location": {
      "$ref": "#/components/schemas/Location",
      "description": "Location associated with the Route List."
    },
    "routeGroup": {
      "$ref": "#/components/schemas/RouteGroup",
      "description": "Route group associated with the Route list."
    }
  }
}