UiPath · JSON Structure

Test Manager Test Execution List Response Structure

Paginated response containing test executions

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

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

Properties

totalCount executions

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/test-manager-test-execution-list-response-structure.json",
  "name": "TestExecutionListResponse",
  "description": "Paginated response containing test executions",
  "type": "object",
  "properties": {
    "totalCount": {
      "type": "int32",
      "description": "Total number of test executions",
      "example": 42
    },
    "executions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TestExecution"
      },
      "example": []
    }
  }
}