UiPath · JSON Structure

Test Manager Project Structure

A test project container in Test Manager

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

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

Properties

id name description createdBy createdOn testCaseCount requirementCount

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-structure.json",
  "name": "Project",
  "description": "A test project container in Test Manager",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the test project",
      "example": "abc123"
    },
    "name": {
      "type": "string",
      "description": "Display name of the test project",
      "example": "Example Name"
    },
    "description": {
      "type": "string",
      "description": "Optional description of the project's testing scope",
      "example": "Example description for this resource."
    },
    "createdBy": {
      "type": "string",
      "description": "Name of the user who created the project",
      "example": "example-value"
    },
    "createdOn": {
      "type": "datetime",
      "description": "ISO 8601 timestamp when the project was created",
      "example": "2026-01-15T10:30:00Z"
    },
    "testCaseCount": {
      "type": "int32",
      "description": "Total number of test cases in the project",
      "example": 42
    },
    "requirementCount": {
      "type": "int32",
      "description": "Total number of requirements in the project",
      "example": 42
    }
  }
}