Webex · Schema

ClusterDetailsCollection

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
orgId string The unique ID for the organization.
items array Details of all the clusters of the organization.
View JSON Schema on GitHub

JSON Schema

webex-clusterdetailscollection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClusterDetailsCollection",
  "title": "ClusterDetailsCollection",
  "type": "object",
  "properties": {
    "orgId": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL09SR0FOSVpBVElPTi8zNmQ4OTRmNy0yYjU3LTQzYzEtYWNlZS1kNDdlNjc3NjE0MTQ",
      "description": "The unique ID for the organization."
    },
    "items": {
      "type": "array",
      "items": {
        "anyOf": [
          {
            "$ref": "#/components/schemas/BlrClusterDetails"
          },
          {
            "$ref": "#/components/schemas/SJClusterDetails"
          }
        ]
      },
      "description": " Details of all the clusters of the organization."
    }
  }
}