UiPath · Schema

AuditEventCollection

Collection of audit events with pagination links

AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Properties

Name Type Description
auditEvents array
next string URL to retrieve newer audit events relative to the current result set
previous string URL to retrieve older audit events relative to the current result set
View JSON Schema on GitHub

JSON Schema

platform-management-audit-event-collection-schema.json Raw ↑
{
  "$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"
    }
  }
}