{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-schema/asset-graph-vuln-schema.json", "title": "Vuln", "description": "Vuln schema from Asset Graph API", "type": "object", "properties": { "confidence": { "format": "double", "type": "number" }, "cwes": { "items": { "$ref": "#/components/schemas/CWE" }, "type": [ "array", "null" ] }, "evidence": { "items": { "$ref": "#/components/schemas/Evidence" }, "type": [ "array", "null" ] }, "id": { "type": "string" }, "kev": { "items": { "$ref": "#/components/schemas/KEV" }, "type": [ "array", "null" ] }, "metrics": { "$ref": "#/components/schemas/Metrics" }, "name": { "type": "string" }, "risk_source": { "enum": [ "", "censys", "cve" ], "type": "string" }, "severity": { "enum": [ "", "low", "medium", "high", "critical" ], "type": "string" }, "source": { "enum": [ "", "censys", "recog", "wappalyzer", "third_party", "html_meta_extractor" ], "type": "string" }, "year": { "format": "int32", "minimum": 0, "type": "integer" } }, "additionalProperties": false }