CVESummary

Summary CVE record returned in list operations

AutomationComplianceEnterpriseLinuxOperating SystemRed HatRHELSecuritySubscription ManagementVulnerability Management

Properties

Name Type Description
CVE string CVE identifier
severity string Severity rating
public_date string Date the CVE was made public
advisories array List of associated advisory IDs
bugzilla string Bugzilla ticket URL
bugzilla_description string Short description of the vulnerability
cvss_score number CVSS v2 base score
cvss3_score number CVSS v3 base score
cwe string CWE identifier
affected_packages array List of affected package names
resource_url string URL for full CVE details
View JSON Schema on GitHub

JSON Schema

rhel-cvesummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CVESummary",
  "title": "CVESummary",
  "type": "object",
  "description": "Summary CVE record returned in list operations",
  "properties": {
    "CVE": {
      "type": "string",
      "description": "CVE identifier",
      "example": "CVE-2021-23358"
    },
    "severity": {
      "type": "string",
      "description": "Severity rating",
      "enum": [
        "Low",
        "Moderate",
        "Important",
        "Critical"
      ]
    },
    "public_date": {
      "type": "string",
      "format": "date-time",
      "description": "Date the CVE was made public"
    },
    "advisories": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of associated advisory IDs"
    },
    "bugzilla": {
      "type": "string",
      "description": "Bugzilla ticket URL"
    },
    "bugzilla_description": {
      "type": "string",
      "description": "Short description of the vulnerability"
    },
    "cvss_score": {
      "type": "number",
      "description": "CVSS v2 base score"
    },
    "cvss3_score": {
      "type": "number",
      "description": "CVSS v3 base score"
    },
    "cwe": {
      "type": "string",
      "description": "CWE identifier"
    },
    "affected_packages": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of affected package names"
    },
    "resource_url": {
      "type": "string",
      "format": "uri",
      "description": "URL for full CVE details"
    }
  }
}