Rapid7 · Schema

EntityModelVulnerability

SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security

Properties

Name Type Description
id string The ID of the Vulnerability
app object
root_cause object
severity string The severity of the Vulnerability
status string The status of the Vulnerability
first_discovered string The time the Vulnerability was first discovered
last_discovered string The time the Vulnerability was last discovered
newly_discovered boolean Indicates that the vulnerability has been found in the latest scan and has not been discovered before
variances array Evidence found that indicates the presence of a Vulnerability
vector_string string Textual representation of the metric values used to determine the CVSS score
vulnerability_score number CVSS score which represents the severity of an information security vulnerability
insight_ui_url string Direct link to the Vulnerability on InsightAppSec UI. Require InsightAppSec login before use.
updated_time string ${public-api.docs.models.vulnerability.properties.updated-time}
links array
View JSON Schema on GitHub

JSON Schema

rapid7-entitymodelvulnerability-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EntityModelVulnerability",
  "title": "EntityModelVulnerability",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "The ID of the Vulnerability",
      "readOnly": true
    },
    "app": {
      "$ref": "#/components/schemas/ReadOnlyIdResource"
    },
    "root_cause": {
      "$ref": "#/components/schemas/RootCause"
    },
    "severity": {
      "type": "string",
      "description": "The severity of the Vulnerability",
      "enum": [
        "SAFE",
        "INFORMATIONAL",
        "LOW",
        "MEDIUM",
        "HIGH",
        "CRITICAL"
      ]
    },
    "status": {
      "type": "string",
      "description": "The status of the Vulnerability",
      "enum": [
        "UNREVIEWED",
        "FALSE_POSITIVE",
        "VERIFIED",
        "IGNORED",
        "REMEDIATED",
        "DUPLICATE"
      ]
    },
    "first_discovered": {
      "type": "string",
      "description": "The time the Vulnerability was first discovered",
      "example": "2021-08-03T14:07:37",
      "readOnly": true
    },
    "last_discovered": {
      "type": "string",
      "description": "The time the Vulnerability was last discovered",
      "example": "2021-08-03T14:07:37",
      "readOnly": true
    },
    "newly_discovered": {
      "type": "boolean",
      "description": "Indicates that the vulnerability has been found in the latest scan and has not been discovered before ",
      "readOnly": true
    },
    "variances": {
      "type": "array",
      "description": "Evidence found that indicates the presence of a Vulnerability",
      "items": {
        "$ref": "#/components/schemas/Variance"
      },
      "readOnly": true
    },
    "vector_string": {
      "type": "string",
      "description": "Textual representation of the metric values used to determine the CVSS score",
      "readOnly": true
    },
    "vulnerability_score": {
      "type": "number",
      "format": "double",
      "description": "CVSS score which represents the severity of an information security vulnerability",
      "readOnly": true
    },
    "insight_ui_url": {
      "type": "string",
      "description": "Direct link to the Vulnerability on InsightAppSec UI. <b>Require InsightAppSec login before use.<b>",
      "readOnly": true
    },
    "updated_time": {
      "type": "string",
      "format": "date-time",
      "description": "${public-api.docs.models.vulnerability.properties.updated-time}",
      "readOnly": true
    },
    "links": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Link"
      },
      "readOnly": true
    }
  }
}