Censys · Schema

Vuln

Vuln schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
confidence number
cwes arraynull
evidence arraynull
id string
kev arraynull
metrics object
name string
risk_source string
severity string
source string
year integer
View JSON Schema on GitHub

JSON Schema

platform-vuln-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/platform-vuln-schema.json",
  "title": "Vuln",
  "description": "Vuln schema from Censys Platform API",
  "type": "object",
  "properties": {
    "confidence": {
      "format": "double",
      "type": "number"
    },
    "cwes": {
      "items": {
        "$ref": "#/components/schemas/CWE"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "evidence": {
      "items": {
        "$ref": "#/components/schemas/Evidence"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "id": {
      "type": "string"
    },
    "kev": {
      "items": {
        "$ref": "#/components/schemas/KEV"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "metrics": {
      "$ref": "#/components/schemas/Metrics"
    },
    "name": {
      "type": "string"
    },
    "risk_source": {
      "enum": [
        "",
        "censys",
        "cve"
      ],
      "type": "string"
    },
    "severity": {
      "enum": [
        "",
        "low",
        "medium",
        "high",
        "critical"
      ],
      "type": "string"
    },
    "source": {
      "enum": [
        "",
        "censys",
        "recog",
        "wappalyzer",
        "third_party",
        "html_meta_extractor"
      ],
      "type": "string"
    },
    "year": {
      "format": "int32",
      "minimum": 0,
      "type": "integer"
    }
  },
  "additionalProperties": false
}