UiPath · JSON Structure

Test Manager Project List Response Structure

Paginated response containing test projects

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

ProjectListResponse 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 projects

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-project-list-response-structure.json",
  "name": "ProjectListResponse",
  "description": "Paginated response containing test projects",
  "type": "object",
  "properties": {
    "totalCount": {
      "type": "int32",
      "description": "Total number of projects",
      "example": 42
    },
    "page": {
      "type": "int32",
      "description": "Current page number",
      "example": 1
    },
    "pageSize": {
      "type": "int32",
      "description": "Records per page",
      "example": 1
    },
    "projects": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Project"
      },
      "example": []
    }
  }
}