TestRunList

Paginated list of test runs

AgileBehavior Driven DevelopmentGherkinQuality AssuranceRequirementsTestingUser Stories

Properties

Name Type Description
total integer Total number of test runs
page integer Current page number
pageSize integer Number of items per page
runs array Array of test run objects
View JSON Schema on GitHub

JSON Schema

acceptance-criteria-management-test-run-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.example.com/schemas/test-run-list.json",
  "title": "TestRunList",
  "type": "object",
  "description": "Paginated list of test runs",
  "properties": {
    "total": {
      "type": "integer",
      "description": "Total number of test runs"
    },
    "page": {
      "type": "integer",
      "description": "Current page number"
    },
    "pageSize": {
      "type": "integer",
      "description": "Number of items per page"
    },
    "runs": {
      "type": "array",
      "description": "Array of test run objects",
      "items": {
        "$ref": "test-run.json"
      }
    }
  }
}