Censys · Schema

CPE

CPE schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
cpe string
edition string
life_cycle object
part string
product string
update string
vendor string
version string
View JSON Schema on GitHub

JSON Schema

platform-cpe-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-cpe-schema.json",
  "title": "CPE",
  "description": "CPE schema from Censys Platform API",
  "type": "object",
  "properties": {
    "cpe": {
      "type": "string"
    },
    "edition": {
      "type": "string"
    },
    "life_cycle": {
      "$ref": "#/components/schemas/CPE_LifeCycle"
    },
    "part": {
      "type": "string"
    },
    "product": {
      "type": "string"
    },
    "update": {
      "type": "string"
    },
    "vendor": {
      "type": "string"
    },
    "version": {
      "type": "string"
    }
  },
  "additionalProperties": false
}