Webex · Schema

RouteIdentity

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string ID of the route type.
name string A unique name for the route identity.
type object Type associated with the identity.
View JSON Schema on GitHub

JSON Schema

webex-routeidentity-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RouteIdentity",
  "title": "RouteIdentity",
  "type": "object",
  "required": [
    "id",
    "name",
    "type"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1JPVVRFX0dST1VQLzA1OWEyNzNlLWJiYjAtMTFlYy04NDIyLTAyNDJhYzEyMDAwMg",
      "description": "ID of the route type."
    },
    "name": {
      "type": "string",
      "example": "route_identity_name",
      "description": "A unique name for the route identity."
    },
    "type": {
      "$ref": "#/components/schemas/RouteType",
      "description": "Type associated with the identity."
    }
  }
}