UiPath · Schema

ODataProcessCollection

OData collection response containing processes

AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Properties

Name Type Description
value array
View JSON Schema on GitHub

JSON Schema

orchestrator-o-data-process-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/orchestrator-o-data-process-collection-schema.json",
  "title": "ODataProcessCollection",
  "description": "OData collection response containing processes",
  "type": "object",
  "properties": {
    "value": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64",
            "description": "Unique process identifier"
          },
          "Name": {
            "type": "string",
            "description": "Process display name"
          },
          "Key": {
            "type": "string",
            "format": "uuid",
            "description": "Unique GUID key for the process"
          },
          "Description": {
            "type": "string",
            "description": "Process description"
          },
          "ProcessVersion": {
            "type": "string",
            "description": "Version of the underlying package"
          }
        }
      },
      "example": []
    }
  }
}