{ "$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 }