{ "$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. Require InsightAppSec login before use.", "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 } } }