{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/uipath/refs/heads/main/json-structure/test-manager-test-execution-list-response-structure.json", "name": "TestExecutionListResponse", "description": "Paginated response containing test executions", "type": "object", "properties": { "totalCount": { "type": "int32", "description": "Total number of test executions", "example": 42 }, "executions": { "type": "array", "items": { "$ref": "#/components/schemas/TestExecution" }, "example": [] } } }