Censys · Schema

Reputation_Evidence

Reputation_Evidence schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
additional_fields arraynull
category string
evidence_score number
external_signals arraynull
threats arraynull
View JSON Schema on GitHub

JSON Schema

platform-reputation-evidence-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-reputation-evidence-schema.json",
  "title": "Reputation_Evidence",
  "description": "Reputation_Evidence schema from Censys Platform API",
  "type": "object",
  "properties": {
    "additional_fields": {
      "items": {
        "$ref": "#/components/schemas/Reputation_Evidence_FieldValue"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "category": {
      "type": "string"
    },
    "evidence_score": {
      "format": "float",
      "type": "number"
    },
    "external_signals": {
      "items": {
        "$ref": "#/components/schemas/Reputation_Evidence_ExternalSignal"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "threats": {
      "items": {
        "$ref": "#/components/schemas/Reputation_Evidence_Threat"
      },
      "type": [
        "array",
        "null"
      ]
    }
  },
  "additionalProperties": false
}