Properties
| Name | Type | Description |
|---|---|---|
| subject | string | |
| locations | array | |
| attendees | array | |
| isAllDay | boolean | |
| isOnlineMeeting | boolean | |
| onlineMeetingProvider | string | |
| showAs | string | |
| importance | string | |
| sensitivity | string | |
| categories | array | |
| reminderMinutesBeforeStart | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "EventUpdateRequest",
"type": "object",
"properties": {
"subject": {
"type": "string"
},
"locations": {
"type": "array"
},
"attendees": {
"type": "array"
},
"isAllDay": {
"type": "boolean"
},
"isOnlineMeeting": {
"type": "boolean"
},
"onlineMeetingProvider": {
"type": "string"
},
"showAs": {
"type": "string"
},
"importance": {
"type": "string"
},
"sensitivity": {
"type": "string"
},
"categories": {
"type": "array"
},
"reminderMinutesBeforeStart": {
"type": "integer"
}
}
}