Censys · Schema

Reputation

Reputation schema from Asset Graph API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
evidence arraynull
model_version string
score number
score_level string
View JSON Schema on GitHub

JSON Schema

asset-graph-reputation-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/asset-graph-reputation-schema.json",
  "title": "Reputation",
  "description": "Reputation schema from Asset Graph API",
  "type": "object",
  "properties": {
    "evidence": {
      "items": {
        "$ref": "#/components/schemas/Reputation_Evidence"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "model_version": {
      "type": "string"
    },
    "score": {
      "format": "float",
      "type": "number"
    },
    "score_level": {
      "enum": [
        "",
        "benign",
        "low_risk",
        "medium_risk",
        "high_risk",
        "malicious"
      ],
      "type": "string"
    }
  },
  "additionalProperties": false
}