{
  "schemaVersion": "flowdrome.workflow.v1",
  "id": "",
  "name": "Unified inbox — Receive Message",
  "version": "0",
  "status": "draft",
  "nodes": [
    {
      "id": "rx",
      "type": "input.receive-message",
      "label": "Normalize inbound",
      "category": "communication",
      "config": {
        "provider": "slack",
        "messagePath": "event.text",
        "senderPath": "event.user",
        "channelPath": "event.channel"
      },
      "position": {
        "x": 0,
        "y": 23
      }
    },
    {
      "id": "out",
      "type": "utility.console",
      "label": "Unified inbox",
      "category": "utility",
      "config": {
        "message": "[{{ $json.channel }}] {{ $json.sender }}: {{ $json.message }}"
      },
      "position": {
        "x": 530,
        "y": 0
      }
    }
  ],
  "edges": [
    {
      "id": "e0",
      "sourceNodeId": "rx",
      "sourcePort": "output",
      "targetNodeId": "out",
      "targetPort": "input"
    }
  ],
  "triggers": [
    {
      "id": "t0",
      "nodeId": "rx"
    }
  ],
  "meta": {
    "snippets": [],
    "source": "template-gallery",
    "description": "One normalized inbox across platforms: Receive Message extracts text/sender/channel by path regardless of which platform delivered the webhook — write your routing once."
  }
}