ScenarioList

Paginated list of BDD scenarios

AgileBehavior Driven DevelopmentGherkinQuality AssuranceRequirementsTestingUser Stories

Properties

Name Type Description
total integer Total number of scenarios matching the query
page integer Current page number
pageSize integer Number of items per page
scenarios array Array of scenario objects
View JSON Schema on GitHub

JSON Schema

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