Webex · Schema

UsbPortsObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enabled boolean New Control to Enable/Disable the side USB port.
sideUsbEnabled boolean Enable/disable use of the side USB port on the MPP device. Enabled by default.
rearUsbEnabled boolean Enable/disable use of the rear USB port on the MPP device.
View JSON Schema on GitHub

JSON Schema

webex-usbportsobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UsbPortsObject",
  "title": "UsbPortsObject",
  "type": "object",
  "required": [
    "enabled",
    "sideUsbEnabled",
    "rearUsbEnabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean",
      "description": "New Control to Enable/Disable the side USB port."
    },
    "sideUsbEnabled": {
      "type": "boolean",
      "example": true,
      "description": "Enable/disable use of the side USB port on the MPP device. Enabled by default."
    },
    "rearUsbEnabled": {
      "type": "boolean",
      "example": true,
      "description": "Enable/disable use of the rear USB port on the MPP device."
    }
  }
}