Rapid7 · Schema

Threat

The information about the threat.

SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security

Properties

Name Type Description
name string The name of the threat.
note string Notes about this threat.
published boolean Indicates whether this threat has been published.
indicator_count integer The number of indicators in this threat.
View JSON Schema on GitHub

JSON Schema

rapid7-threat-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Threat",
  "title": "Threat",
  "required": [
    "indicator_count",
    "name",
    "published"
  ],
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the threat.",
      "example": "Threat"
    },
    "note": {
      "type": "string",
      "description": "Notes about this threat.",
      "example": "Notes"
    },
    "published": {
      "type": "boolean",
      "description": "Indicates whether this threat has been published.",
      "example": true
    },
    "indicator_count": {
      "minimum": 0,
      "type": "integer",
      "description": "The number of indicators in this threat.",
      "format": "int64",
      "example": 1
    }
  },
  "description": "The information about the threat."
}