Censys · Schema

KEV

KEV schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
date_added string The date the vulnerability was added to the KEV catalog.
date_due string Per CISA’s Binding Operation Directive 22-01, the date all federal civilian executive branch (FCEB) agencies are required to remediate vulnerabilities in the KEV catalog.
source string The source checked to determine whether the CVE is in the KEV catalog.
View JSON Schema on GitHub

JSON Schema

platform-kev-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-kev-schema.json",
  "title": "KEV",
  "description": "KEV schema from Censys Platform API",
  "type": "object",
  "properties": {
    "date_added": {
      "description": "The date the vulnerability was added to the KEV catalog.",
      "type": "string"
    },
    "date_due": {
      "description": "Per CISA\u2019s Binding Operation Directive 22-01, the date all federal civilian executive branch (FCEB) agencies are required to remediate vulnerabilities in the KEV catalog.",
      "type": "string"
    },
    "source": {
      "description": "The source checked to determine whether the CVE is in the KEV catalog.",
      "enum": [
        "",
        "cisa",
        "third_party"
      ],
      "type": "string"
    }
  },
  "additionalProperties": false
}