Censys · Schema

Attribute

Attribute schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat Huntingcyber-threat-intelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
components arraynull
confidence number
cpe string
edition string
evidence arraynull
life_cycle object
part string
product string
source string
type arraynull
update string
vendor string
version string
View JSON Schema on GitHub

JSON Schema

platform-attribute-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-attribute-schema.json",
  "title": "Attribute",
  "description": "Attribute schema from Censys Platform API",
  "type": "object",
  "properties": {
    "components": {
      "items": {
        "$ref": "#/components/schemas/CPE"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "confidence": {
      "format": "double",
      "type": "number"
    },
    "cpe": {
      "type": "string"
    },
    "edition": {
      "type": "string"
    },
    "evidence": {
      "items": {
        "$ref": "#/components/schemas/Evidence"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "life_cycle": {
      "$ref": "#/components/schemas/CPE_LifeCycle"
    },
    "part": {
      "type": "string"
    },
    "product": {
      "type": "string"
    },
    "source": {
      "enum": [
        "",
        "censys",
        "recog",
        "wappalyzer",
        "third_party",
        "html_meta_extractor"
      ],
      "type": "string"
    },
    "type": {
      "items": {
        "type": "string"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "update": {
      "type": "string"
    },
    "vendor": {
      "type": "string"
    },
    "version": {
      "type": "string"
    }
  },
  "additionalProperties": false
}