{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Vulnerability", "type": "object", "properties": { "id": { "type": "string", "description": "Vulnerability identifier" }, "cveIds": { "type": "array", "description": "Associated CVE identifiers" }, "severity": { "type": "string" }, "cvssScore": { "type": "number", "description": "CVSS base score" }, "description": { "type": "string" }, "affectedServers": { "type": "array", "description": "List of affected server IDs" }, "status": { "type": "string" }, "availableFixes": { "type": "array", "description": "List of available fix IDs" }, "publishedDate": { "type": "string" }, "discoveredDate": { "type": "string" } } }