changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "cves": {
+ "description": "List of CVE records matching the search",
+ "items": {
+ "properties": {
+ "cvss_score": {
+ "description": "CVSS base score (v3.1 preferred, falls back to v2)",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "description": {
+ "description": "English description of the vulnerability",
+ "type": "string"
+ },
+ "id": {
+ "description": "CVE identifier",
+ "type": "string"
+ },
+ "last_modified": {
+ "description": "Last modification date in ISO 8601 format",
+ "type": "string"
+ },
+ "published": {
+ "description": "Publication date in ISO 8601 format",
+ "type": "string"
+ },
+ "severity": {
+ "description": "Severity rating (CRITICAL, HIGH, MEDIUM, LOW, NONE)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "status": {
+ "description": "Vulnerability status (e.g., PUBLISHED)",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "published",
+ "last_modified",
+ "status",
+ "description",
+ "cvss_score",
+ "severity"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "returned": {
+ "description": "Number of CVEs returned in this response",
+ "type": "number"
+ },
+ "total_results": {
+ "description": "Total number of CVEs matching the search query",
+ "type": "number"
+ }
+ },
+ "required": [
+ "total_results",
+ "returned",
+ "cves"
+ ],
+ "type": "object"
+}