Microsoft Exchange · Schema

ScheduleItem

An item that describes availability

CalendarCollaborationContactsEmailEnterprise

Properties

Name Type Description
start object
end object
isPrivate boolean
status string
subject string
location string
View JSON Schema on GitHub

JSON Schema

microsoft-exchange-scheduleitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScheduleItem",
  "title": "ScheduleItem",
  "type": "object",
  "description": "An item that describes availability",
  "properties": {
    "start": {
      "$ref": "#/components/schemas/DateTimeTimeZone"
    },
    "end": {
      "$ref": "#/components/schemas/DateTimeTimeZone"
    },
    "isPrivate": {
      "type": "boolean"
    },
    "status": {
      "type": "string",
      "enum": [
        "free",
        "tentative",
        "busy",
        "oof",
        "workingElsewhere",
        "unknown"
      ]
    },
    "subject": {
      "type": "string"
    },
    "location": {
      "type": "string"
    }
  }
}