Microsoft Graph · Schema

microsoft.graph.attendee

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphattendee-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.attendee",
  "title": "microsoft.graph.attendee",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.attendeeBase"
    },
    {
      "title": "attendee",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "proposedNewTime": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.timeSlot"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "An alternate date/time proposed by the attendee for a meeting request to start and end. If the attendee hasn't proposed another time, then this property isn't included in a response of a GET event."
        },
        "status": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.responseStatus"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "The attendee's response (none, accepted, declined, etc.) for the event and date-time that the response was sent."
        },
        "@odata.type": {
          "type": "string",
          "default": "#microsoft.graph.attendee"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.attendee"
}