Anchore · Schema
Anchore Vulnerability
Schema for a vulnerability found in an Anchore-analyzed image
Container SecurityContainersSBOMSoftware Supply ChainVulnerability Scanning
Properties
| Name | Type | Description |
|---|---|---|
| vuln | string | CVE or vulnerability identifier |
| severity | string | |
| package | string | |
| packageVersion | string | |
| packageType | string | |
| fix | string | Fixed version if available |
| url | string | |
| feedGroup | string | |
| packagePath | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/anchore/refs/heads/main/json-schema/anchore-vulnerability-schema.json",
"title": "Anchore Vulnerability",
"description": "Schema for a vulnerability found in an Anchore-analyzed image",
"type": "object",
"properties": {
"vuln": {
"type": "string",
"description": "CVE or vulnerability identifier"
},
"severity": {
"type": "string",
"enum": [
"Critical",
"High",
"Medium",
"Low",
"Negligible",
"Unknown"
]
},
"package": {
"type": "string"
},
"packageVersion": {
"type": "string"
},
"packageType": {
"type": "string"
},
"fix": {
"type": "string",
"description": "Fixed version if available"
},
"url": {
"type": "string",
"format": "uri"
},
"feedGroup": {
"type": "string"
},
"packagePath": {
"type": "string"
}
},
"required": [
"vuln",
"severity",
"package"
]
}