UiPath · Schema

ClientInfo

Client connection information for an audit event

AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Properties

Name Type Description
ipAddress string IP address from which the action was performed
country string Country resolved from the IP address
View JSON Schema on GitHub

JSON Schema

platform-management-client-info-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-client-info-schema.json",
  "title": "ClientInfo",
  "description": "Client connection information for an audit event",
  "type": "object",
  "properties": {
    "ipAddress": {
      "type": "string",
      "description": "IP address from which the action was performed",
      "example": "example-value"
    },
    "country": {
      "type": "string",
      "description": "Country resolved from the IP address",
      "example": 42
    }
  }
}