Censys · Schema

EventStatusChange

EventStatusChange schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
event_time string
new_status string
old_status string
reason string
View JSON Schema on GitHub

JSON Schema

platform-eventstatuschange-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-eventstatuschange-schema.json",
  "title": "EventStatusChange",
  "description": "EventStatusChange schema from Censys Platform API",
  "type": "object",
  "properties": {
    "event_time": {
      "format": "date-time",
      "type": "string"
    },
    "new_status": {
      "enum": [
        "active",
        "populating",
        "paused",
        "archived"
      ],
      "type": "string"
    },
    "old_status": {
      "enum": [
        "active",
        "populating",
        "paused",
        "archived"
      ],
      "type": "string"
    },
    "reason": {
      "type": "string"
    }
  },
  "required": [
    "event_time",
    "new_status"
  ],
  "additionalProperties": false
}