Webex · Schema

userDeviceCount

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
totalDeviceCount number The total count of devices associated with the user as a sum of: - Count of total primary physical devices. - Count of Webex-Team system device endpoints. - Count of 1 for any or all applications pres
applicationsCount number The total count of applications associated with the user.
View JSON Schema on GitHub

JSON Schema

webex-userdevicecount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/userDeviceCount",
  "title": "userDeviceCount",
  "type": "object",
  "required": [
    "totalDeviceCount",
    "applicationsCount"
  ],
  "properties": {
    "totalDeviceCount": {
      "type": "number",
      "example": 3,
      "description": "The total count of devices associated with the user as a sum of:\n\n- Count of total primary physical devices.\n\n- Count of Webex-Team system device endpoints.\n\n- Count of 1 for any or all applications present."
    },
    "applicationsCount": {
      "type": "number",
      "example": 4,
      "description": "The total count of applications associated with the user."
    }
  }
}