{ "$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" } } }