Webex · Schema

GetCallCaptionsObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
orgClosedCaptionsEnabled boolean Organization-level closed captions are enabled or disabled.
orgTranscriptsEnabled boolean Organization-level transcripts are enabled or disabled.
View JSON Schema on GitHub

JSON Schema

webex-getcallcaptionsobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetCallCaptionsObject",
  "title": "GetCallCaptionsObject",
  "type": "object",
  "required": [
    "orgClosedCaptionsEnabled",
    "orgTranscriptsEnabled"
  ],
  "properties": {
    "orgClosedCaptionsEnabled": {
      "type": "boolean",
      "example": true,
      "description": "Organization-level closed captions are enabled or disabled."
    },
    "orgTranscriptsEnabled": {
      "type": "boolean",
      "example": true,
      "description": "Organization-level transcripts are enabled or disabled."
    }
  }
}