Microsoft Exchange · Schema

LocationConstraint

Conditions for a meeting location

CalendarCollaborationContactsEmailEnterprise

Properties

Name Type Description
isRequired boolean
suggestLocation boolean
locations array
View JSON Schema on GitHub

JSON Schema

microsoft-exchange-locationconstraint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LocationConstraint",
  "title": "LocationConstraint",
  "type": "object",
  "description": "Conditions for a meeting location",
  "properties": {
    "isRequired": {
      "type": "boolean"
    },
    "suggestLocation": {
      "type": "boolean"
    },
    "locations": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/LocationConstraintItem"
      }
    }
  }
}