{
  "schemaVersion": "flowdrome.workflow.v1",
  "id": "",
  "name": "Node Demos · Helper — enrich customer",
  "version": "0",
  "status": "draft",
  "nodes": [
    {
      "id": "seed",
      "type": "input.inject",
      "label": "Customer in",
      "category": "trigger",
      "config": {
        "contentType": "application/json",
        "payload": {
          "customer": "Acme",
          "tier": "gold"
        }
      },
      "position": {
        "x": 0,
        "y": 0
      }
    },
    {
      "id": "enrich",
      "type": "processing.set",
      "label": "Add owner + score",
      "category": "processing",
      "config": {
        "mode": "manual",
        "assignments": [
          {
            "name": "accountOwner",
            "type": "string",
            "value": "dana@yourco.test"
          },
          {
            "name": "healthScore",
            "type": "number",
            "value": "87"
          }
        ],
        "include": "all",
        "dotNotation": true,
        "ignoreConversionErrors": false
      },
      "position": {
        "x": 530,
        "y": 0
      }
    }
  ],
  "edges": [
    {
      "id": "e0",
      "sourceNodeId": "seed",
      "sourcePort": "output",
      "targetNodeId": "enrich",
      "targetPort": "input"
    }
  ],
  "triggers": [
    {
      "id": "t0",
      "nodeId": "seed"
    }
  ],
  "meta": {
    "snippets": [],
    "source": "template-gallery",
    "description": "A reusable sub-workflow: takes a customer record, adds the account owner and health score. Called by “Enrich via sub-workflow”."
  }
}