{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/uipath/refs/heads/main/json-schema/platform-management-audit-event-collection-schema.json", "title": "AuditEventCollection", "description": "Collection of audit events with pagination links", "type": "object", "properties": { "auditEvents": { "type": "array", "items": { "$ref": "#/components/schemas/AuditEvent" }, "example": [] }, "next": { "type": "string", "format": "uri", "description": "URL to retrieve newer audit events relative to the current result set", "example": "https://cloud.uipath.com/example" }, "previous": { "type": "string", "format": "uri", "description": "URL to retrieve older audit events relative to the current result set", "example": "https://cloud.uipath.com/example" } } }