Webex · Schema

deviceList

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
devices array Array of devices available to person.
maxDeviceCount number Maximum number of devices a person can be assigned to.
maxOwnedDeviceCount number Maximum number of devices a person can own.
View JSON Schema on GitHub

JSON Schema

webex-devicelist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/deviceList",
  "title": "deviceList",
  "type": "object",
  "required": [
    "devices",
    "maxDeviceCount",
    "maxOwnedDeviceCount"
  ],
  "properties": {
    "devices": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/devices"
      },
      "description": "Array of devices available to person."
    },
    "maxDeviceCount": {
      "type": "number",
      "description": "Maximum number of devices a person can be assigned to."
    },
    "maxOwnedDeviceCount": {
      "type": "number",
      "description": "Maximum number of devices a person can own."
    }
  }
}