A reason for not returning any meeting suggestions. The possible values are: attendeesUnavailable, attendeesUnavailableOrUnknown, locationsUnavailable, organizerUnavailable, or unknown. This property
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.meetingTimeSuggestionsResult",
"title": "meetingTimeSuggestionsResult",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"emptySuggestionsReason": {
"type": "string",
"description": "A reason for not returning any meeting suggestions. The possible values are: attendeesUnavailable, attendeesUnavailableOrUnknown, locationsUnavailable, organizerUnavailable, or unknown. This property is an empty string if the meetingTimeSuggestions property does include any meeting suggestions.",
"nullable": true
},
"meetingTimeSuggestions": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.meetingTimeSuggestion"
},
"description": "An array of meeting suggestions."
},
"@odata.type": {
"type": "string"
}
}
}