Acceptance Criteria · JSON Structure

Acceptance Criteria Management User Story List Structure

Paginated list of user stories

Type: object Properties: 4
AgileBehavior Driven DevelopmentGherkinQuality AssuranceRequirementsTestingUser Stories

Acceptance Criteria Management User Story 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 stories

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

JSON Structure

acceptance-criteria-management-user-story-list-structure.json Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "$id": "https://api.example.com/structures/acceptance-criteria-management-user-story-list.json",
  "title": "UserStoryList",
  "type": "object",
  "description": "Paginated list of user stories",
  "properties": {
    "total": {
      "type": "integer",
      "description": "Total number of user stories matching the query"
    },
    "page": {
      "type": "integer",
      "description": "Current page number"
    },
    "pageSize": {
      "type": "integer",
      "description": "Number of items per page"
    },
    "stories": {
      "type": "array",
      "description": "Array of user story objects",
      "items": {
        "$ref": "user-story.json"
      }
    }
  }
}