Webex · Schema

SJClusterDetails

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
clusterId string ID of the Video Mesh cluster.
clusterName string Name of the Video Mesh cluster.
nodes array The Video Mesh nodes in the cluster.
releaseChannel string Release Channel of the Video Mesh cluster.
upgradeSchedule object Upgrade Schedule details of the Video Mesh cluster.
View JSON Schema on GitHub

JSON Schema

webex-sjclusterdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SJClusterDetails",
  "title": "SJClusterDetails",
  "type": "object",
  "properties": {
    "clusterId": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL0hZQlJJRF9DTFVTVEVSLzM2ZDg5NGY3LTJiNTctNDNjMS1hY2VlLWQ0N2U2Nzc2MTQxNDo1ODJhMWFlYy03YTMwLTQ2MDItYTI2NS02YTE5NDcwOTEyMzQ",
      "description": "ID of the Video Mesh cluster."
    },
    "clusterName": {
      "type": "string",
      "example": "San Jose",
      "description": "Name of the Video Mesh cluster."
    },
    "nodes": {
      "type": "array",
      "items": {
        "anyOf": [
          {
            "$ref": "#/components/schemas/SJNode1"
          },
          {
            "$ref": "#/components/schemas/SJNode2"
          }
        ]
      },
      "description": "The Video Mesh nodes in the cluster."
    },
    "releaseChannel": {
      "type": "string",
      "example": "alpha",
      "description": "Release Channel of the Video Mesh cluster."
    },
    "upgradeSchedule": {
      "$ref": "#/components/schemas/ClusterUpgradeScheduleSJ",
      "description": "Upgrade Schedule details of the Video Mesh cluster."
    }
  }
}