Microsoft Graph · Schema

meetingTimeSuggestionsResult

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
emptySuggestionsReason string A reason for not returning any meeting suggestions. The possible values are: attendeesUnavailable, attendeesUnavailableOrUnknown, locationsUnavailable, organizerUnavailable, or unknown. This property
meetingTimeSuggestions array An array of meeting suggestions.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphmeetingtimesuggestionsresult-schema.json Raw ↑
{
  "$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"
    }
  }
}