Acceptance Criteria · JSON Structure

Acceptance Criteria Management Create Test Run Request Structure

Request body for creating and triggering a test run

Type: object Properties: 2
AgileBehavior Driven DevelopmentGherkinQuality AssuranceRequirementsTestingUser Stories

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

Properties

storyIds scenarioIds

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

JSON Structure

acceptance-criteria-management-create-test-run-request-structure.json Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "$id": "https://api.example.com/structures/acceptance-criteria-management-create-test-run-request.json",
  "title": "CreateTestRunRequest",
  "type": "object",
  "description": "Request body for creating and triggering a test run",
  "properties": {
    "storyIds": {
      "type": "array",
      "description": "User story IDs to test (all scenarios for these stories)",
      "items": {
        "type": "string"
      }
    },
    "scenarioIds": {
      "type": "array",
      "description": "Specific scenario IDs to execute",
      "items": {
        "type": "string"
      }
    }
  }
}