Webex · Schema

RouteGroupUsageGetResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string UUID of the route group associated with the Trunk.
name string Name of the Route Group associated with the Trunk.
inUse boolean In use flag.
View JSON Schema on GitHub

JSON Schema

webex-routegroupusagegetresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RouteGroupUsageGetResponse",
  "title": "RouteGroupUsageGetResponse",
  "type": "object",
  "required": [
    "id",
    "name",
    "inUse"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "NTJiZmUxNDAtYjIwMS00NTUzLWI1OGQtMmVkNDU1NTFmYTUy",
      "description": "UUID of the route group associated with the Trunk."
    },
    "name": {
      "type": "string",
      "example": "RouteGroup01",
      "description": "Name of the Route Group associated with the Trunk."
    },
    "inUse": {
      "type": "boolean",
      "example": true,
      "description": "In use flag."
    }
  }
}