UiPath · Schema

ProjectListResponse

Paginated response containing test projects

AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Properties

Name Type Description
totalCount integer Total number of projects
page integer Current page number
pageSize integer Records per page
projects array
View JSON Schema on GitHub

JSON Schema

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