Microsoft Exchange · Schema

FollowupFlag

Follow-up flag on a message

CalendarCollaborationContactsEmailEnterprise

Properties

Name Type Description
completedDateTime object
dueDateTime object
startDateTime object
flagStatus string The status of the follow-up flag
View JSON Schema on GitHub

JSON Schema

microsoft-exchange-followupflag-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FollowupFlag",
  "title": "FollowupFlag",
  "type": "object",
  "description": "Follow-up flag on a message",
  "properties": {
    "completedDateTime": {
      "$ref": "#/components/schemas/DateTimeTimeZone"
    },
    "dueDateTime": {
      "$ref": "#/components/schemas/DateTimeTimeZone"
    },
    "startDateTime": {
      "$ref": "#/components/schemas/DateTimeTimeZone"
    },
    "flagStatus": {
      "type": "string",
      "enum": [
        "notFlagged",
        "complete",
        "flagged"
      ],
      "description": "The status of the follow-up flag"
    }
  }
}