{
  "name": "Website monitoring, scheduling, and email alerts template",
  "nodes": [
    {
      "id": "1",
      "name": "Schedule Website Check",
      "type": "n8n-nodes-base.scheduleTrigger",
      "position": [
        200,
        300
      ]
    },
    {
      "id": "2",
      "name": "Check Website Status",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        400,
        300
      ]
    },
    {
      "id": "3",
      "name": "Website Down?",
      "type": "n8n-nodes-base.if",
      "position": [
        600,
        300
      ]
    },
    {
      "id": "4",
      "name": "Send Downtime Email Alert",
      "type": "n8n-nodes-base.emailSend",
      "position": [
        800,
        200
      ]
    }
  ],
  "connections": {
    "Website Down?": {
      "main": [
        [
          {
            "node": "Send Downtime Email Alert",
            "type": "main",
            "index": 0
          }
        ],
        []
      ]
    },
    "Check Website Status": {
      "main": [
        [
          {
            "node": "Website Down?",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Schedule Website Check": {
      "main": [
        [
          {
            "node": "Check Website Status",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}