Microsoft Graph · Schema

broadcastMeetingCaptionSettings

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
isCaptionEnabled boolean Indicates whether captions are enabled for this Teams live event.
spokenLanguage string The spoken language.
translationLanguages array The translation languages (choose up to 6).
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphbroadcastmeetingcaptionsettings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.broadcastMeetingCaptionSettings",
  "title": "broadcastMeetingCaptionSettings",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "isCaptionEnabled": {
      "type": "boolean",
      "description": "Indicates whether captions are enabled for this Teams live event.",
      "nullable": true
    },
    "spokenLanguage": {
      "type": "string",
      "description": "The spoken language.",
      "nullable": true
    },
    "translationLanguages": {
      "type": "array",
      "items": {
        "type": "string",
        "nullable": true
      },
      "description": "The translation languages (choose up to 6)."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}