UiPath · JSON Structure

Test Manager Requirement List Response Structure

Paginated response containing requirements

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

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

Properties

totalCount requirements

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-requirement-list-response-structure.json",
  "name": "RequirementListResponse",
  "description": "Paginated response containing requirements",
  "type": "object",
  "properties": {
    "totalCount": {
      "type": "int32",
      "description": "Total number of requirements",
      "example": 42
    },
    "requirements": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Requirement"
      },
      "example": []
    }
  }
}