UiPath · JSON Structure

Automation Hub Automation List Response Structure

Paginated response containing automation records

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

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

Properties

totalCount page pageSize automations

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/automation-hub-automation-list-response-structure.json",
  "name": "AutomationListResponse",
  "description": "Paginated response containing automation records",
  "type": "object",
  "properties": {
    "totalCount": {
      "type": "int32",
      "description": "Total number of automations matching the query",
      "example": 42
    },
    "page": {
      "type": "int32",
      "description": "Current page number",
      "example": 1
    },
    "pageSize": {
      "type": "int32",
      "description": "Number of records per page",
      "example": 1
    },
    "automations": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Automation"
      },
      "example": []
    }
  }
}