Censys · Schema

ThreatsListResponse

ThreatsListResponse schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat Huntingcyber-threat-intelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
threats arraynull List of active threats observed on the platform.
View JSON Schema on GitHub

JSON Schema

platform-threatslistresponse-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-threatslistresponse-schema.json",
  "title": "ThreatsListResponse",
  "description": "ThreatsListResponse schema from Censys Platform API",
  "type": "object",
  "properties": {
    "threats": {
      "description": "List of active threats observed on the platform.",
      "items": {
        "$ref": "#/components/schemas/ThreatListItem"
      },
      "type": [
        "array",
        "null"
      ]
    }
  },
  "required": [
    "threats"
  ],
  "additionalProperties": false
}