{
  "name": "Dirty Lead Pipeline",
  "nodes": [
    {
      "id": "trigger-1",
      "name": "Webhook Start",
      "type": "n8n-nodes-base.webhook",
      "typeVersion": 2,
      "position": [
        200,
        200
      ],
      "parameters": {
        "path": "lint-dirty",
        "httpMethod": "POST"
      }
    },
    {
      "id": "lookup-1",
      "name": "Look up jane.doe@example.com",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.1,
      "position": [
        400,
        200
      ],
      "parameters": {
        "method": "GET",
        "url": "https://api.example.com/users"
      }
    },
    {
      "id": "charge-1",
      "name": "Charge Customer",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.1,
      "retryOnFail": true,
      "maxTries": 5,
      "position": [
        600,
        200
      ],
      "parameters": {
        "method": "POST",
        "url": "https://api.stripe.com/v1/charges",
        "headerParameters": {
          "parameters": [
            {
              "name": "Authorization",
              "value": "Bearer <redacted-credential>"
            }
          ]
        }
      }
    },
    {
      "id": "save-1",
      "name": "Save To DB",
      "type": "n8n-nodes-base.postgres",
      "typeVersion": 2.3,
      "position": [
        800,
        200
      ],
      "parameters": {
        "operation": "insert",
        "schema": "public",
        "table": "leads"
      }
    }
  ],
  "connections": {
    "Webhook Start": {
      "main": [
        [
          {
            "node": "Look up jane.doe@example.com",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Look up jane.doe@example.com": {
      "main": [
        [
          {
            "node": "Charge Customer",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Charge Customer": {
      "main": [
        [
          {
            "node": "Save To DB",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}