Microsoft Graph · Schema
attendanceInterval
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| durationInSeconds | number | Duration of the meeting interval in seconds; that is, the difference between joinDateTime and leaveDateTime. |
| joinDateTime | string | The time the attendee joined in UTC. |
| leaveDateTime | string | The time the attendee left in UTC. |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.attendanceInterval",
"title": "attendanceInterval",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"durationInSeconds": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "Duration of the meeting interval in seconds; that is, the difference between joinDateTime and leaveDateTime.",
"format": "int32",
"nullable": true
},
"joinDateTime": {
"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": "The time the attendee joined in UTC.",
"format": "date-time",
"nullable": true
},
"leaveDateTime": {
"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": "The time the attendee left in UTC.",
"format": "date-time",
"nullable": true
},
"@odata.type": {
"type": "string"
}
}
}