Microsoft Graph · Schema

locationConstraint

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
isRequired boolean The client requests the service to include in the response a meeting location for the meeting. If this is true and all the resources are busy, findMeetingTimes won't return any meeting time suggestion
locations array Constraint information for one or more locations that the client requests for the meeting.
suggestLocation boolean The client requests the service to suggest one or more meeting locations.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphlocationconstraint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.locationConstraint",
  "title": "locationConstraint",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "isRequired": {
      "type": "boolean",
      "description": "The client requests the service to include in the response a meeting location for the meeting. If this is true and all the resources are busy, findMeetingTimes won't return any meeting time suggestions. If this is false and all the resources are busy, findMeetingTimes would still look for meeting times without locations.",
      "nullable": true
    },
    "locations": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.locationConstraintItem"
      },
      "description": "Constraint information for one or more locations that the client requests for the meeting."
    },
    "suggestLocation": {
      "type": "boolean",
      "description": "The client requests the service to suggest one or more meeting locations.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}