Cisco Webex · Schema

Cisco Webex License

Represents a Webex license for an organization, including total and consumed units and subscription details.

CollaborationCommunicationsMeetingsMessagingTeamsVideo Conferencing

Properties

Name Type Description
id string Unique identifier for the license.
name string Name of the license.
totalUnits integer Total number of license units available.
consumedUnits integer Number of license units consumed.
consumedByUsers integer Number of units consumed by users.
consumedByWorkspaces integer Number of units consumed by workspaces.
subscriptionId string Subscription ID associated with the license.
siteUrl string Webex site URL for the license.
siteType string Type of the Webex site.
View JSON Schema on GitHub

JSON Schema

cisco-webex-license-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://developer.webex.com/schemas/license.json",
  "title": "Cisco Webex License",
  "description": "Represents a Webex license for an organization, including total and consumed units and subscription details.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the license."
    },
    "name": {
      "type": "string",
      "description": "Name of the license."
    },
    "totalUnits": {
      "type": "integer",
      "description": "Total number of license units available."
    },
    "consumedUnits": {
      "type": "integer",
      "description": "Number of license units consumed."
    },
    "consumedByUsers": {
      "type": "integer",
      "description": "Number of units consumed by users."
    },
    "consumedByWorkspaces": {
      "type": "integer",
      "description": "Number of units consumed by workspaces."
    },
    "subscriptionId": {
      "type": "string",
      "description": "Subscription ID associated with the license."
    },
    "siteUrl": {
      "type": "string",
      "description": "Webex site URL for the license."
    },
    "siteType": {
      "type": "string",
      "description": "Type of the Webex site."
    }
  },
  "required": ["id", "name"]
}