Webex · Schema

placeDeviceList

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

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

JSON Schema

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