{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-structure/platform-vuln-structure.json", "name": "Vuln", "description": "Vuln schema from Censys Platform API", "type": "object", "additionalProperties": false, "properties": { "confidence": { "type": "double" }, "cwes": { "type": [ "array", "null" ], "items": { "$ref": "#/components/schemas/CWE" } }, "evidence": { "type": [ "array", "null" ], "items": { "$ref": "#/components/schemas/Evidence" } }, "id": { "type": "string" }, "kev": { "type": [ "array", "null" ], "items": { "$ref": "#/components/schemas/KEV" } }, "metrics": { "$ref": "#/components/schemas/Metrics" }, "name": { "type": "string" }, "risk_source": { "type": "string", "enum": [ "", "censys", "cve" ] }, "severity": { "type": "string", "enum": [ "", "low", "medium", "high", "critical" ] }, "source": { "type": "string", "enum": [ "", "censys", "recog", "wappalyzer", "third_party", "html_meta_extractor" ] }, "year": { "type": "int32", "minimum": 0 } } }