UiPath · Schema

TestSetListResponse

Paginated response containing test sets

AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Properties

Name Type Description
totalCount integer Total number of test sets
testSets array
View JSON Schema on GitHub

JSON Schema

test-manager-test-set-list-response-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/test-manager-test-set-list-response-schema.json",
  "title": "TestSetListResponse",
  "description": "Paginated response containing test sets",
  "type": "object",
  "properties": {
    "totalCount": {
      "type": "integer",
      "description": "Total number of test sets",
      "example": 42
    },
    "testSets": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TestSet"
      },
      "example": []
    }
  }
}