{ "$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" } } } }