Webex · Schema

BluetoothObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

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

JSON Schema

webex-bluetoothobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BluetoothObject",
  "title": "BluetoothObject",
  "type": "object",
  "required": [
    "enabled",
    "mode"
  ],
  "properties": {
    "enabled": {
      "type": "boolean",
      "example": true,
      "description": "Enable/disable Bluetooth."
    },
    "mode": {
      "type": "string",
      "enum": [
        "PHONE"
      ],
      "description": "Select a Bluetooth mode."
    },
    "PHONE": {
      "type": "string"
    },
    "HANDS_FREE": {
      "type": "string"
    },
    "BOTH": {
      "type": "string"
    }
  }
}