UiPath · JSON Structure

Platform Management Audit Event Collection Structure

Collection of audit events with pagination links

Type: object Properties: 3
AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

AuditEventCollection is a JSON Structure definition published by UiPath, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

auditEvents next previous

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

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