Webex · Schema

RouteGroupGet

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
name string Name of the route group.
organization object Organization details.
localGateways array Local Gateways that are part of this Route Group.
View JSON Schema on GitHub

JSON Schema

webex-routegroupget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RouteGroupGet",
  "title": "RouteGroupGet",
  "type": "object",
  "required": [
    "name",
    "organization",
    "localGateways"
  ],
  "properties": {
    "name": {
      "type": "string",
      "example": "'Route Group One'",
      "description": "Name of the route group."
    },
    "organization": {
      "$ref": "#/components/schemas/Organization",
      "description": "Organization details."
    },
    "localGateways": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/LocalGateways"
      },
      "description": "Local Gateways that are part of this Route Group."
    }
  }
}