Censys · Schema

CVSSv4

CVSSv4 schema from Asset Graph API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
components object These metrics contribute to how a CVE is scored.
score number Score of the vulnerability; 0.1 is the lowest, 10 is the maximum
vector string The path, method, or scenario used to exploit the vulnerability. Each section represents components that contribute to the overall CVSS score.
View JSON Schema on GitHub

JSON Schema

asset-graph-cvssv4-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-schema/asset-graph-cvssv4-schema.json",
  "title": "CVSSv4",
  "description": "CVSSv4 schema from Asset Graph API",
  "type": "object",
  "properties": {
    "components": {
      "$ref": "#/components/schemas/CVSSv4_Components",
      "description": "These metrics contribute to how a CVE is scored."
    },
    "score": {
      "description": "Score of the vulnerability; 0.1 is the lowest, 10 is the maximum",
      "format": "double",
      "type": "number"
    },
    "vector": {
      "description": "The path, method, or scenario used to exploit the vulnerability. Each section represents components that contribute to the overall CVSS score.",
      "type": "string"
    }
  },
  "additionalProperties": false
}