UiPath · Schema

AuditSource

A service that generates audit events

AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Properties

Name Type Description
name string Name identifier of the audit event source service
targets array List of event target categories for this source
View JSON Schema on GitHub

JSON Schema

platform-management-audit-source-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-source-schema.json",
  "title": "AuditSource",
  "description": "A service that generates audit events",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name identifier of the audit event source service",
      "example": "Example Name"
    },
    "targets": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of event target categories for this source",
      "example": []
    }
  }
}