UiPath · Schema

Project

A test project container in Test Manager

AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Properties

Name Type Description
id string Unique identifier of the test project
name string Display name of the test project
description string Optional description of the project's testing scope
createdBy string Name of the user who created the project
createdOn string ISO 8601 timestamp when the project was created
testCaseCount integer Total number of test cases in the project
requirementCount integer Total number of requirements in the project
View JSON Schema on GitHub

JSON Schema

test-manager-project-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-schema.json",
  "title": "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": "string",
      "format": "date-time",
      "description": "ISO 8601 timestamp when the project was created",
      "example": "2026-01-15T10:30:00Z"
    },
    "testCaseCount": {
      "type": "integer",
      "description": "Total number of test cases in the project",
      "example": 42
    },
    "requirementCount": {
      "type": "integer",
      "description": "Total number of requirements in the project",
      "example": 42
    }
  }
}