Acceptance Criteria · JSON Structure

Acceptance Criteria Management Test Run Structure

An execution instance of acceptance criteria tests across one or more stories or scenarios

Type: object Properties: 11 Required: 2
AgileBehavior Driven DevelopmentGherkinQuality AssuranceRequirementsTestingUser Stories

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

Properties

id storyIds scenarioIds status totalScenarios passedScenarios failedScenarios skippedScenarios startedAt completedAt reportUrl

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

JSON Structure

acceptance-criteria-management-test-run-structure.json Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "$id": "https://api.example.com/structures/acceptance-criteria-management-test-run.json",
  "title": "TestRun",
  "type": "object",
  "description": "An execution instance of acceptance criteria tests across one or more stories or scenarios",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the test run"
    },
    "storyIds": {
      "type": "array",
      "description": "User story IDs included in this test run",
      "items": {
        "type": "string"
      }
    },
    "scenarioIds": {
      "type": "array",
      "description": "Specific scenario IDs included in this test run",
      "items": {
        "type": "string"
      }
    },
    "status": {
      "type": "string",
      "description": "Overall test run status",
      "enum": [
        "queued",
        "running",
        "passed",
        "failed",
        "cancelled"
      ]
    },
    "totalScenarios": {
      "type": "integer",
      "description": "Total number of scenarios in this run"
    },
    "passedScenarios": {
      "type": "integer",
      "description": "Number of scenarios that passed"
    },
    "failedScenarios": {
      "type": "integer",
      "description": "Number of scenarios that failed"
    },
    "skippedScenarios": {
      "type": "integer",
      "description": "Number of scenarios that were skipped"
    },
    "startedAt": {
      "type": "string",
      "description": "Timestamp when the test run started"
    },
    "completedAt": {
      "type": "string",
      "description": "Timestamp when the test run completed"
    },
    "reportUrl": {
      "type": "string",
      "description": "URL to the detailed test run report"
    }
  },
  "required": [
    "id",
    "status"
  ]
}