Webex · Schema

BargeInInfo

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enabled boolean Indicates if the Barge In feature is enabled.
toneEnabled boolean Indicates that a stutter dial tone will be played when a virtual line is barging in on the active call.
View JSON Schema on GitHub

JSON Schema

webex-bargeininfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BargeInInfo",
  "title": "BargeInInfo",
  "type": "object",
  "required": [
    "enabled",
    "toneEnabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean",
      "example": true,
      "description": "Indicates if the Barge In feature is enabled."
    },
    "toneEnabled": {
      "type": "boolean",
      "description": "Indicates that a stutter dial tone will be played when a virtual line is barging in on the active call."
    }
  }
}