Microsoft Defender · Schema

AlertComment

A comment associated with an alert.

Properties

Name Type Description
comment string The comment text.
createdBy string The user who created the comment.
createdTime string The date and time the comment was created.
View JSON Schema on GitHub

JSON Schema

microsoft-defender-alertcomment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AlertComment",
  "title": "AlertComment",
  "type": "object",
  "description": "A comment associated with an alert.",
  "properties": {
    "comment": {
      "type": "string",
      "description": "The comment text."
    },
    "createdBy": {
      "type": "string",
      "description": "The user who created the comment."
    },
    "createdTime": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time the comment was created."
    }
  }
}