Microsoft Graph · Schema

meetingParticipants

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
attendees array Information about the meeting attendees.
organizer object Information about the meeting organizer.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphmeetingparticipants-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.meetingParticipants",
  "title": "meetingParticipants",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "attendees": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.meetingParticipantInfo"
      },
      "description": "Information about the meeting attendees."
    },
    "organizer": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.meetingParticipantInfo"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Information about the meeting organizer."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}