Microsoft Graph · Schema

meetingParticipantInfo

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
identity object Identity information of the participant.
role object Specifies the participant's role in the meeting.
upn string User principal name of the participant.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphmeetingparticipantinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.meetingParticipantInfo",
  "title": "meetingParticipantInfo",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "identity": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.identitySet"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Identity information of the participant."
    },
    "role": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.onlineMeetingRole"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Specifies the participant's role in the meeting."
    },
    "upn": {
      "type": "string",
      "description": "User principal name of the participant.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  },
  "discriminator": {
    "propertyName": "@odata.type",
    "mapping": {
      "#microsoft.graph.virtualEventPresenterInfo": "#/components/schemas/microsoft.graph.virtualEventPresenterInfo"
    }
  }
}