Rapid7 · Schema

AlertInfo

SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security

Properties

Name Type Description
type string The alert's type.
type_description string An optional description of this type of alert.
first_event_time string The time the first event involved in this alert occurred.
View JSON Schema on GitHub

JSON Schema

rapid7-alertinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AlertInfo",
  "title": "AlertInfo",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "The alert's type.",
      "example": "Account Created"
    },
    "type_description": {
      "type": "string",
      "description": "An optional description of this type of alert.",
      "example": "A new account has been created."
    },
    "first_event_time": {
      "type": "string",
      "description": "The time the first event involved in this alert occurred.",
      "example": "2018-06-06T16:56:42Z"
    }
  },
  "required": [
    "type"
  ]
}