Censys · Schema

HostTimeline

HostTimeline schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
events arraynull
scanned_to string
View JSON Schema on GitHub

JSON Schema

platform-hosttimeline-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-hosttimeline-schema.json",
  "title": "HostTimeline",
  "description": "HostTimeline schema from Censys Platform API",
  "type": "object",
  "properties": {
    "events": {
      "items": {
        "$ref": "#/components/schemas/HostTimelineEventAsset"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "scanned_to": {
      "format": "date-time",
      "type": "string"
    }
  },
  "required": [
    "events",
    "scanned_to"
  ],
  "additionalProperties": false
}