Microsoft Graph · Schema

lobbyBypassSettings

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
isDialInBypassEnabled boolean Specifies whether or not to always let dial-in callers bypass the lobby. Optional.
scope object Specifies the type of participants that are automatically admitted into a meeting, bypassing the lobby. Optional.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphlobbybypasssettings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.lobbyBypassSettings",
  "title": "lobbyBypassSettings",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "isDialInBypassEnabled": {
      "type": "boolean",
      "description": "Specifies whether or not to always let dial-in callers bypass the lobby. Optional.",
      "nullable": true
    },
    "scope": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.lobbyBypassScope"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Specifies the type of participants that are automatically admitted into a meeting, bypassing the lobby. Optional."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}