CreateTestRunRequest

Request body for creating and triggering a test run

AgileBehavior Driven DevelopmentGherkinQuality AssuranceRequirementsTestingUser Stories

Properties

Name Type Description
storyIds array User story IDs to test (all scenarios for these stories)
scenarioIds array Specific scenario IDs to execute
View JSON Schema on GitHub

JSON Schema

acceptance-criteria-management-create-test-run-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.example.com/schemas/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"
      }
    }
  }
}