{
  "schemaVersion": "flowdrome.workflow.v1",
  "id": "",
  "name": "Status feed — RSS",
  "version": "0",
  "status": "draft",
  "nodes": [
    {
      "id": "seed",
      "type": "input.inject",
      "label": "Poll tick",
      "category": "trigger",
      "config": {
        "contentType": "application/json",
        "payload": {}
      },
      "position": {
        "x": 0,
        "y": 0
      }
    },
    {
      "id": "rss",
      "type": "input.rss-read",
      "label": "Read feed",
      "category": "io",
      "config": {
        "url": "https://hnrss.org/frontpage?count=3",
        "onlyNew": false,
        "limit": 3,
        "timeoutMs": 15000
      },
      "position": {
        "x": 530,
        "y": 0
      }
    },
    {
      "id": "out",
      "type": "utility.console",
      "label": "Feed items",
      "category": "utility",
      "config": {
        "message": "latest items: {{ $json }}"
      },
      "position": {
        "x": 1060,
        "y": 0
      }
    }
  ],
  "edges": [
    {
      "id": "e0",
      "sourceNodeId": "seed",
      "sourcePort": "output",
      "targetNodeId": "rss",
      "targetPort": "input"
    },
    {
      "id": "e1",
      "sourceNodeId": "rss",
      "sourcePort": "output",
      "targetNodeId": "out",
      "targetPort": "input"
    }
  ],
  "triggers": [
    {
      "id": "t0",
      "nodeId": "seed"
    }
  ],
  "meta": {
    "snippets": [],
    "source": "template-gallery",
    "description": "Watch a vendor's status page RSS for new incidents (onlyNew remembers what it has seen across runs). Needs internet; swap the URL for any feed you care about."
  }
}