FollowupFlag

Allows setting a flag on an item for the user to follow up on later.

CloudCollaborationEnterpriseMicrosoftProductivity

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-office-365-followupflag-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FollowupFlag",
  "title": "FollowupFlag",
  "type": "object",
  "description": "Allows setting a flag on an item for the user to follow up on later.",
  "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.",
      "example": "notFlagged"
    }
  }
}