Rapid7 · Schema

VulnerabilityHistory

SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security

Properties

Name Type Description
id string The ID of update which applied the changes.
create_time string The time of the update which applied the changes.
source object
changes array The collection of changes that were applied in the update.
View JSON Schema on GitHub

JSON Schema

rapid7-vulnerabilityupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VulnerabilityUpdate",
  "title": "VulnerabilityHistory",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "The ID of update which applied the changes.",
      "readOnly": true
    },
    "create_time": {
      "type": "string",
      "description": "The time of the update which applied the changes.",
      "example": "2021-08-03T14:07:37",
      "readOnly": true
    },
    "source": {
      "$ref": "#/components/schemas/VulnerabilityUpdateSource"
    },
    "changes": {
      "type": "array",
      "description": "The collection of changes that were applied in the update.",
      "items": {
        "$ref": "#/components/schemas/VulnerabilityChange"
      },
      "readOnly": true
    }
  }
}