Acceptance Criteria · JSON Structure

Acceptance Criteria Management Scenario List Structure

Paginated list of BDD scenarios

Type: object Properties: 4
AgileBehavior Driven DevelopmentGherkinQuality AssuranceRequirementsTestingUser Stories

Acceptance Criteria Management Scenario 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 scenarios

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

JSON Structure

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