Microsoft Exchange · Schema
ScheduleInformation
Free/busy information for a user
CalendarCollaborationContactsEmailEnterprise
Properties
| Name | Type | Description |
|---|---|---|
| scheduleId | string | SMTP address of the user or resource |
| availabilityView | string | Merged view of availability using single characters (0=free, 1=tentative, 2=busy, 3=oof, 4=workingElsewhere) |
| scheduleItems | array | |
| workingHours | object | |
| error | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ScheduleInformation",
"title": "ScheduleInformation",
"type": "object",
"description": "Free/busy information for a user",
"properties": {
"scheduleId": {
"type": "string",
"description": "SMTP address of the user or resource"
},
"availabilityView": {
"type": "string",
"description": "Merged view of availability using single characters (0=free, 1=tentative, 2=busy, 3=oof, 4=workingElsewhere)"
},
"scheduleItems": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ScheduleItem"
}
},
"workingHours": {
"$ref": "#/components/schemas/WorkingHours"
},
"error": {
"type": "object",
"properties": {
"message": {
"type": "string"
},
"responseCode": {
"type": "string"
}
}
}
}
}