Webex · JSON Structure

Meeting Bluetooth Object Structure

BluetoothObject schema from Webex API

Type: object Properties: 5 Required: 2
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

BluetoothObject is a JSON Structure definition published by Webex, describing 5 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

enabled mode PHONE HANDS_FREE BOTH

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/webex/refs/heads/main/json-structure/meeting-bluetooth-object-structure.json",
  "name": "BluetoothObject",
  "description": "BluetoothObject schema from Webex API",
  "type": "object",
  "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"
    }
  },
  "required": [
    "enabled",
    "mode"
  ]
}