Microsoft Exchange · Schema

TimeConstraint

Restricts meeting time suggestions to certain time periods

CalendarCollaborationContactsEmailEnterprise

Properties

Name Type Description
activityDomain string
timeSlots array
View JSON Schema on GitHub

JSON Schema

microsoft-exchange-timeconstraint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TimeConstraint",
  "title": "TimeConstraint",
  "type": "object",
  "description": "Restricts meeting time suggestions to certain time periods",
  "properties": {
    "activityDomain": {
      "type": "string",
      "enum": [
        "work",
        "personal",
        "unrestricted",
        "unknown"
      ]
    },
    "timeSlots": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TimeSlot"
      }
    }
  }
}