Microsoft Exchange · Schema

AttendeeBase

Attendee information for meeting time suggestions

CalendarCollaborationContactsEmailEnterprise

Properties

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

JSON Schema

microsoft-exchange-attendeebase-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AttendeeBase",
  "title": "AttendeeBase",
  "type": "object",
  "description": "Attendee information for meeting time suggestions",
  "properties": {
    "emailAddress": {
      "$ref": "#/components/schemas/EmailAddress"
    },
    "type": {
      "type": "string",
      "enum": [
        "required",
        "optional",
        "resource"
      ],
      "description": "The type of attendee"
    }
  }
}