{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.meetingAttendanceReport", "title": "microsoft.graph.meetingAttendanceReport", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.entity" }, { "title": "meetingAttendanceReport", "required": [ "@odata.type" ], "type": "object", "properties": { "externalEventInformation": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.virtualEventExternalInformation" }, "description": "The external information of a virtual event. Returned only for event organizers or coorganizers. Read-only." }, "meetingEndDateTime": { "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", "type": "string", "description": "UTC time when the meeting ended. Read-only.", "format": "date-time", "nullable": true }, "meetingStartDateTime": { "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", "type": "string", "description": "UTC time when the meeting started. Read-only.", "format": "date-time", "nullable": true }, "totalParticipantCount": { "maximum": 2147483647, "minimum": -2147483648, "type": "number", "description": "Total number of participants. Read-only.", "format": "int32", "nullable": true }, "attendanceRecords": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.attendanceRecord" }, "description": "List of attendance records of an attendance report. Read-only.", "x-ms-navigationProperty": true }, "@odata.type": { "type": "string" } } } ], "x-ms-discriminator-value": "#microsoft.graph.meetingAttendanceReport" }