{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-structure/platform-auditlogeventsresponse-structure.json", "name": "AuditLogEventsResponse", "description": "AuditLogEventsResponse schema from Censys Platform API", "type": "object", "required": [ "events", "pagination", "total_results" ], "additionalProperties": false, "properties": { "events": { "type": [ "array", "null" ], "description": "The page of audit log events for the requested filters and pagination parameters.", "items": { "$ref": "#/components/schemas/AuditLogEvent" } }, "pagination": { "description": "Pagination information for listing more events.", "$ref": "#/components/schemas/PaginationInfo" }, "total_results": { "type": "int64" } } }