Webex · Schema

orgDetailsItems

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
orgId string Unique ID of the organization.
orgName string Name of the organization.
orgType string Type of the organization.
orgMode string Mode of the organization.
clusters array List of clusters in the organization.
View JSON Schema on GitHub

JSON Schema

webex-orgdetailsitems-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/orgDetailsItems",
  "title": "orgDetailsItems",
  "type": "object",
  "properties": {
    "orgId": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL09SR0FOSVpBVElPTi8yYzNjOWY5NS03M2Q5LTQ0NjAtYTY2OC0wNDcxNjJmZjFiYWQ=",
      "description": "Unique ID of the organization."
    },
    "orgName": {
      "type": "string",
      "example": "HDS_Demo",
      "description": "Name of the organization."
    },
    "orgType": {
      "type": "string",
      "example": "Single Tenant",
      "description": "Type of the organization."
    },
    "orgMode": {
      "type": "string",
      "example": "Production",
      "description": "Mode of the organization."
    },
    "clusters": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/clusterSummary"
      },
      "description": "List of clusters in the organization."
    }
  }
}