Microsoft Graph · Schema

commentAction

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
isReply boolean If true, this activity was a reply to an existing comment thread.
parentAuthor object The identity of the user who started the comment thread.
participants array The identities of the users participating in this comment thread.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphcommentaction-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.commentAction",
  "title": "commentAction",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "isReply": {
      "type": "boolean",
      "description": "If true, this activity was a reply to an existing comment thread.",
      "nullable": true
    },
    "parentAuthor": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.identitySet"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The identity of the user who started the comment thread."
    },
    "participants": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.identitySet"
      },
      "description": "The identities of the users participating in this comment thread."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}