Microsoft Graph · Schema

onlineMeetingRestricted

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
contentSharingDisabled object Specifies the reason shared content from this participant is disabled. The possible values are: watermarkProtection, unknownFutureValue.
videoDisabled object Specifies the reason video from this participant is disabled. The possible values are: watermarkProtection, unknownFutureValue.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphonlinemeetingrestricted-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.onlineMeetingRestricted",
  "title": "onlineMeetingRestricted",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "contentSharingDisabled": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.onlineMeetingContentSharingDisabledReason"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Specifies the reason shared content from this participant is disabled. The possible values are: watermarkProtection, unknownFutureValue."
    },
    "videoDisabled": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.onlineMeetingVideoDisabledReason"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Specifies the reason video from this participant is disabled. The possible values are: watermarkProtection, unknownFutureValue."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}