{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AuditLogsResponse", "title": "AuditLogsResponse", "type": "object", "properties": { "requestId": { "type": "string", "description": "A unique identifier for the request." }, "records": { "type": "object", "properties": { "totalRecords": { "type": "integer", "description": "Total number of log entries matching the filter." }, "currentPageSize": { "type": "integer", "description": "Number of entries in the current page." }, "cursor": { "type": "string", "description": "Cursor for retrieving the next page." } } }, "logs": { "type": "array", "items": { "$ref": "#/components/schemas/AuditLogEntry" }, "description": "List of audit log entries." } } }