Webex · Schema

Control

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
locked boolean Whether the meeting is locked or not.
recordingStarted boolean The value can be true or false, it indicates the meeting recording started or not.
recordingPaused boolean The value can be true or false, it indicates the meeting recording paused or not.
View JSON Schema on GitHub

JSON Schema

webex-control-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Control",
  "title": "Control",
  "type": "object",
  "properties": {
    "locked": {
      "type": "boolean",
      "description": "Whether the meeting is locked or not."
    },
    "recordingStarted": {
      "type": "boolean",
      "example": true,
      "description": "The value can be true or false, it indicates the meeting recording started or not."
    },
    "recordingPaused": {
      "type": "boolean",
      "example": true,
      "description": "The value can be true or false, it indicates the meeting recording paused or not."
    }
  }
}