Webex · Schema

RouteGroup

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Route group ID the Route list is associated with.
name string Name of the Route group the Route list associated with.
inUse boolean Flag to indicate if the route group is used.
View JSON Schema on GitHub

JSON Schema

webex-routegroup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RouteGroup",
  "title": "RouteGroup",
  "type": "object",
  "required": [
    "id",
    "name",
    "inUse"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1JPVVRFX0dST1VQL2ZjN2EzZDU2LTg1OGMtNDVkZC1iZDA1LTE2OWM2NGU1OTRmMQ",
      "description": "Route group ID the Route list is associated with."
    },
    "name": {
      "type": "string",
      "example": "Route Group 01",
      "description": "Name of the Route group the Route list associated with."
    },
    "inUse": {
      "type": "boolean",
      "example": true,
      "description": "Flag to indicate if the route group is used."
    }
  }
}