Attendee

An event attendee that can be a person or resource.

CloudCollaborationEnterpriseMicrosoftProductivity

Properties

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

JSON Schema

microsoft-office-365-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 that can be a person or resource.",
  "properties": {
    "emailAddress": {
      "$ref": "#/components/schemas/EmailAddress"
    },
    "type": {
      "type": "string",
      "enum": [
        "required",
        "optional",
        "resource"
      ],
      "description": "The type of attendee.",
      "example": "required"
    },
    "status": {
      "$ref": "#/components/schemas/ResponseStatus"
    },
    "proposedNewTime": {
      "$ref": "#/components/schemas/TimeSlot"
    }
  }
}