Censys · Schema

ThreatListItem

ThreatListItem schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
added_at string The date and time when the threat was added.
count integer Total count of assets affected by this threat.
description string Detailed description of the threat.
host_count integer Number of hosts affected by this threat.
id string Unique identifier of the threat.
name string Human-readable name of the threat.
references arraynull External reference links for the threat.
web_count integer Number of web properties affected by this threat.
View JSON Schema on GitHub

JSON Schema

platform-threatlistitem-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-threatlistitem-schema.json",
  "title": "ThreatListItem",
  "description": "ThreatListItem schema from Censys Platform API",
  "type": "object",
  "properties": {
    "added_at": {
      "description": "The date and time when the threat was added.",
      "format": "date-time",
      "type": "string"
    },
    "count": {
      "description": "Total count of assets affected by this threat.",
      "format": "int64",
      "type": "integer"
    },
    "description": {
      "description": "Detailed description of the threat.",
      "type": "string"
    },
    "host_count": {
      "description": "Number of hosts affected by this threat.",
      "format": "int64",
      "type": "integer"
    },
    "id": {
      "description": "Unique identifier of the threat.",
      "type": "string"
    },
    "name": {
      "description": "Human-readable name of the threat.",
      "type": "string"
    },
    "references": {
      "description": "External reference links for the threat.",
      "items": {
        "$ref": "#/components/schemas/ThreatReference"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "web_count": {
      "description": "Number of web properties affected by this threat.",
      "format": "int64",
      "type": "integer"
    }
  },
  "required": [
    "id",
    "count",
    "host_count",
    "web_count"
  ],
  "additionalProperties": false
}