NVD · Schema

CVSSMetricV2

SecurityCVECPEVulnerabilityCVSS

Properties

Name Type Description
source string
type string
cvssData object
baseSeverity string
View JSON Schema on GitHub

JSON Schema

nvd-cvssmetricv2-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CVSSMetricV2",
  "title": "CVSSMetricV2",
  "type": "object",
  "properties": {
    "source": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "enum": [
        "Primary",
        "Secondary"
      ]
    },
    "cvssData": {
      "type": "object",
      "properties": {
        "version": {
          "type": "string",
          "enum": [
            "2.0"
          ]
        },
        "vectorString": {
          "type": "string"
        },
        "baseScore": {
          "type": "number",
          "minimum": 0,
          "maximum": 10
        }
      }
    },
    "baseSeverity": {
      "type": "string",
      "enum": [
        "LOW",
        "MEDIUM",
        "HIGH"
      ]
    }
  }
}