Properties
| Name | Type | Description |
|---|---|---|
| CVE | string | CVE identifier |
| severity | string | |
| public_date | string | |
| bugzilla | string | Associated Bugzilla URL |
| cvss_score | number | CVSS v2 score |
| cvss3_score | number | CVSS v3 score |
| cwe | string | CWE identifier |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CveSummary",
"title": "CveSummary",
"type": "object",
"properties": {
"CVE": {
"type": "string",
"description": "CVE identifier"
},
"severity": {
"type": "string",
"enum": [
"Critical",
"Important",
"Moderate",
"Low"
]
},
"public_date": {
"type": "string",
"format": "date-time"
},
"bugzilla": {
"type": "string",
"description": "Associated Bugzilla URL"
},
"cvss_score": {
"type": "number",
"description": "CVSS v2 score"
},
"cvss3_score": {
"type": "number",
"description": "CVSS v3 score"
},
"cwe": {
"type": "string",
"description": "CWE identifier"
}
}
}