Webex · Schema

BluetoothObjectDevice

BluetoothObjectDevice schema from Webex API

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enabled boolean Enable/disable Bluetooth.
mode string Select a Bluetooth mode.
View JSON Schema on GitHub

JSON Schema

ucm-bluetooth-object-device-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/webex/refs/heads/main/json-schema/ucm-bluetooth-object-device-schema.json",
  "title": "BluetoothObjectDevice",
  "description": "BluetoothObjectDevice schema from Webex API",
  "type": "object",
  "properties": {
    "enabled": {
      "type": "boolean",
      "example": true,
      "description": "Enable/disable Bluetooth."
    },
    "mode": {
      "type": "string",
      "enum": [
        "PHONE",
        "HANDS_FREE",
        "BOTH"
      ],
      "description": "Select a Bluetooth mode."
    }
  },
  "required": [
    "enabled"
  ]
}