Microsoft Graph · Schema
scheduleItem
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| end | object | The date, time, and time zone that the corresponding event ends. |
| isPrivate | boolean | The sensitivity of the corresponding event. True if the event is marked private, false otherwise. Optional. |
| location | string | The location where the corresponding event is held or attended from. Optional. |
| start | object | The date, time, and time zone that the corresponding event starts. |
| status | object | The availability status of the user or resource during the corresponding event. The possible values are: free, tentative, busy, oof, workingElsewhere, unknown. |
| subject | string | The corresponding event's subject line. Optional. |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.scheduleItem",
"title": "scheduleItem",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"end": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone"
},
{
"type": "object",
"nullable": true
}
],
"description": "The date, time, and time zone that the corresponding event ends."
},
"isPrivate": {
"type": "boolean",
"description": "The sensitivity of the corresponding event. True if the event is marked private, false otherwise. Optional.",
"nullable": true
},
"location": {
"type": "string",
"description": "The location where the corresponding event is held or attended from. Optional.",
"nullable": true
},
"start": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone"
},
{
"type": "object",
"nullable": true
}
],
"description": "The date, time, and time zone that the corresponding event starts."
},
"status": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.freeBusyStatus"
},
{
"type": "object",
"nullable": true
}
],
"description": "The availability status of the user or resource during the corresponding event. The possible values are: free, tentative, busy, oof, workingElsewhere, unknown."
},
"subject": {
"type": "string",
"description": "The corresponding event's subject line. Optional.",
"nullable": true
},
"@odata.type": {
"type": "string"
}
}
}