Censys · JSON Structure

Platform Eventstatuschange Structure

EventStatusChange schema from Censys Platform API

Type: object Properties: 4 Required: 2
SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

EventStatusChange is a JSON Structure definition published by Censys, describing 4 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

event_time new_status old_status reason

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-structure/platform-eventstatuschange-structure.json",
  "name": "EventStatusChange",
  "description": "EventStatusChange schema from Censys Platform API",
  "type": "object",
  "required": [
    "event_time",
    "new_status"
  ],
  "additionalProperties": false,
  "properties": {
    "event_time": {
      "type": "datetime"
    },
    "new_status": {
      "type": "string",
      "enum": [
        "active",
        "populating",
        "paused",
        "archived"
      ]
    },
    "old_status": {
      "type": "string",
      "enum": [
        "active",
        "populating",
        "paused",
        "archived"
      ]
    },
    "reason": {
      "type": "string"
    }
  }
}