{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CatalogVulnerability", "title": "CatalogVulnerability", "type": "object", "properties": { "cve": { "type": "string", "description": "CVE identifier" }, "severity": { "type": "string", "enum": [ "Low", "Medium", "High", "Critical" ] }, "cvss_v3_score": { "type": "number" }, "summary": { "type": "string" }, "is_transitive": { "type": "boolean", "description": "Whether this is a transitive vulnerability from a dependency" }, "fixed_versions": { "type": "array", "items": { "type": "string" } }, "published": { "type": "string", "format": "date-time" }, "jfrog_research_severity": { "type": "string", "description": "JFrog Security Research team severity assessment" }, "jfrog_research_summary": { "type": "string", "description": "JFrog Security Research enrichment summary" } } }