Webex · Schema

RouteGroupPost

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
name string A unique name for the Route Group.
localGateways array Local Gateways that are part of this Route Group.
View JSON Schema on GitHub

JSON Schema

webex-routegrouppost-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RouteGroupPost",
  "title": "RouteGroupPost",
  "type": "object",
  "required": [
    "name",
    "localGateways"
  ],
  "properties": {
    "name": {
      "type": "string",
      "example": "routeGroupName",
      "description": "A unique name for the Route Group."
    },
    "localGateways": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/LocalGateways"
      },
      "description": "Local Gateways that are part of this Route Group."
    }
  }
}