{
  "schemaVersion": "flowdrome.workflow.v1",
  "id": "",
  "name": "Fixture kickoff — Inject",
  "version": "0",
  "status": "draft",
  "nodes": [
    {
      "id": "seed",
      "type": "input.inject",
      "label": "Fixture payload",
      "category": "trigger",
      "config": {
        "contentType": "application/json",
        "payload": {
          "scenario": "développement",
          "rows": 3
        }
      },
      "position": {
        "x": 0,
        "y": 0
      }
    },
    {
      "id": "out",
      "type": "utility.console",
      "label": "Flow under test",
      "category": "utility",
      "config": {
        "message": "fixture delivered: {{ $json }}"
      },
      "position": {
        "x": 530,
        "y": 0
      }
    }
  ],
  "edges": [
    {
      "id": "e0",
      "sourceNodeId": "seed",
      "sourcePort": "output",
      "targetNodeId": "out",
      "targetPort": "input"
    }
  ],
  "triggers": [
    {
      "id": "t0",
      "nodeId": "seed"
    }
  ],
  "meta": {
    "snippets": [],
    "source": "template-gallery",
    "description": "Inject is the TEST FIXTURE trigger: it fires with this exact payload on Test and never fires in production — the standard way to develop a flow before wiring the real trigger."
  }
}