Webex · Schema

OrganizationStatusGetObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
isLargeOrg boolean `true` if the organization is categorized as large organization.
largeOrgThresholdPercentage integer The threshold percentage represents the percentage of the threshold reached to categorize an organization as a large organization.
View JSON Schema on GitHub

JSON Schema

webex-organizationstatusgetobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OrganizationStatusGetObject",
  "title": "OrganizationStatusGetObject",
  "type": "object",
  "required": [
    "isLargeOrg",
    "largeOrgThresholdPercentage"
  ],
  "properties": {
    "isLargeOrg": {
      "type": "boolean",
      "example": true,
      "description": "`true` if the organization is categorized as large organization."
    },
    "largeOrgThresholdPercentage": {
      "type": "integer",
      "example": 90,
      "description": "The threshold percentage represents the percentage of the threshold reached to categorize an organization as a large organization."
    }
  }
}