Censys · Schema

EventAssetChange

EventAssetChange schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
change_type string
event_time string
reason string
View JSON Schema on GitHub

JSON Schema

platform-eventassetchange-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-eventassetchange-schema.json",
  "title": "EventAssetChange",
  "description": "EventAssetChange schema from Censys Platform API",
  "type": "object",
  "properties": {
    "change_type": {
      "enum": [
        "added",
        "removed"
      ],
      "type": "string"
    },
    "event_time": {
      "format": "date-time",
      "type": "string"
    },
    "reason": {
      "type": "string"
    }
  },
  "required": [
    "event_time",
    "reason",
    "change_type"
  ],
  "additionalProperties": false
}