UiPath · JSON Structure

Test Manager Test Set Structure

A collection of test cases grouped for execution

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

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

Properties

id name description testCaseCount createdOn

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-test-set-structure.json",
  "name": "TestSet",
  "description": "A collection of test cases grouped for execution",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the test set",
      "example": "abc123"
    },
    "name": {
      "type": "string",
      "description": "Display name of the test set",
      "example": "Example Name"
    },
    "description": {
      "type": "string",
      "description": "Optional description of the test set's purpose",
      "example": "Example description for this resource."
    },
    "testCaseCount": {
      "type": "int32",
      "description": "Number of test cases included in this test set",
      "example": 42
    },
    "createdOn": {
      "type": "datetime",
      "description": "ISO 8601 timestamp when the test set was created",
      "example": "2026-01-15T10:30:00Z"
    }
  }
}