Censys · Schema

AuditLogEventsResponse

AuditLogEventsResponse schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
events arraynull The page of audit log events for the requested filters and pagination parameters.
pagination object Pagination information for listing more events.
total_results integer
View JSON Schema on GitHub

JSON Schema

platform-auditlogeventsresponse-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-auditlogeventsresponse-schema.json",
  "title": "AuditLogEventsResponse",
  "description": "AuditLogEventsResponse schema from Censys Platform API",
  "type": "object",
  "properties": {
    "events": {
      "description": "The page of audit log events for the requested filters and pagination parameters.",
      "items": {
        "$ref": "#/components/schemas/AuditLogEvent"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "pagination": {
      "$ref": "#/components/schemas/PaginationInfo",
      "description": "Pagination information for listing more events."
    },
    "total_results": {
      "format": "int64",
      "type": "integer"
    }
  },
  "required": [
    "events",
    "pagination",
    "total_results"
  ],
  "additionalProperties": false
}