Acceptance Criteria · JSON Structure

Acceptance Criteria Management Acceptance Criteria List Structure

List of acceptance criteria for a user story

Type: object Properties: 4
AgileBehavior Driven DevelopmentGherkinQuality AssuranceRequirementsTestingUser Stories

Acceptance Criteria Management Acceptance Criteria 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 criteria

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

JSON Structure

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