UiPath · Schema

RequirementListResponse

Paginated response containing requirements

AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Properties

Name Type Description
totalCount integer Total number of requirements
requirements array
View JSON Schema on GitHub

JSON Schema

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