Microsoft Exchange · Schema

Attendee

An event attendee with response status

CalendarCollaborationContactsEmailEnterprise

Properties

Name Type Description
emailAddress object
type string The type of attendee
status object
proposedNewTime object
View JSON Schema on GitHub

JSON Schema

microsoft-exchange-attendee-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Attendee",
  "title": "Attendee",
  "type": "object",
  "description": "An event attendee with response status",
  "properties": {
    "emailAddress": {
      "$ref": "#/components/schemas/EmailAddress"
    },
    "type": {
      "type": "string",
      "enum": [
        "required",
        "optional",
        "resource"
      ],
      "description": "The type of attendee"
    },
    "status": {
      "$ref": "#/components/schemas/ResponseStatus"
    },
    "proposedNewTime": {
      "$ref": "#/components/schemas/TimeSlot"
    }
  }
}