Microsoft Exchange · Schema

ResponseStatus

Response status of an attendee or organizer

CalendarCollaborationContactsEmailEnterprise

Properties

Name Type Description
response string The response type
time string The date and time that the response was returned
View JSON Schema on GitHub

JSON Schema

microsoft-exchange-responsestatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResponseStatus",
  "title": "ResponseStatus",
  "type": "object",
  "description": "Response status of an attendee or organizer",
  "properties": {
    "response": {
      "type": "string",
      "enum": [
        "none",
        "organizer",
        "tentativelyAccepted",
        "accepted",
        "declined",
        "notResponded"
      ],
      "description": "The response type"
    },
    "time": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time that the response was returned"
    }
  }
}