Acceptance Criteria · JSON Structure

Acceptance Criteria Management Test Run List Structure

Paginated list of test runs

Type: object Properties: 4
AgileBehavior Driven DevelopmentGherkinQuality AssuranceRequirementsTestingUser Stories

Acceptance Criteria Management Test Run List Structure is a JSON Structure definition published by Acceptance Criteria, describing 4 properties. It conforms to the https://json-structure.org/meta/extended/v0/# meta-schema.

Properties

total page pageSize runs

Meta-schema: https://json-structure.org/meta/extended/v0/#

JSON Structure

acceptance-criteria-management-test-run-list-structure.json Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "$id": "https://api.example.com/structures/acceptance-criteria-management-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"
      }
    }
  }
}