{
  "id": "demo-content-automation",
  "name": "Content Automation Workflow",
  "nodes": [
    {
      "id": "rss-input",
      "name": "Read Product Blog RSS",
      "type": "n8n-nodes-base.rssFeedRead",
      "parameters": {
        "url": "https://content.example.test/rss.xml"
      }
    },
    {
      "id": "fetch-source",
      "name": "Fetch Source Article",
      "type": "n8n-nodes-base.httpRequest",
      "parameters": {
        "url": "={{$json.link}}",
        "method": "GET"
      }
    },
    {
      "id": "summarize",
      "name": "LLM Summarize Article",
      "type": "n8n-nodes-base.openAi",
      "parameters": {
        "resource": "text",
        "operation": "message",
        "model": "demo-summary-model",
        "prompt": "Summarize this article for an internal editorial queue."
      }
    },
    {
      "id": "create-notion-draft",
      "name": "Create Notion Draft",
      "type": "n8n-nodes-base.notion",
      "parameters": {
        "resource": "databasePage",
        "operation": "create",
        "databaseId": "demo-notion-database-id",
        "title": "={{$json.title}}"
      }
    },
    {
      "id": "notify-editorial",
      "name": "Slack Editorial Notification",
      "type": "n8n-nodes-base.slack",
      "parameters": {
        "resource": "message",
        "operation": "post",
        "channel": "#demo-editorial",
        "text": "New summary draft is ready for review."
      }
    }
  ],
  "connections": {
    "Read Product Blog RSS": {
      "main": [
        [
          {
            "node": "Fetch Source Article",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Fetch Source Article": {
      "main": [
        [
          {
            "node": "LLM Summarize Article",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "LLM Summarize Article": {
      "main": [
        [
          {
            "node": "Create Notion Draft",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Create Notion Draft": {
      "main": [
        [
          {
            "node": "Slack Editorial Notification",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}