{
  "version": 1,
  "rules": [
    {
      "id": "a0000004",
      "enabled": false,
      "name": "Doorbell: notify three ways",
      "when": {
        "type": "hook",
        "name": "doorbell"
      },
      "then": [
        {
          "event": {
            "type": "reminder",
            "title": "Someone is at the door",
            "text_pos": 0
          }
        },
        {
          "mqtt": {
            "topic": "home/doorbell/event",
            "payload": "pressed",
            "retain": false
          }
        },
        {
          "telegram": {
            "chat": "",
            "text": "AtlasCube: someone is at the door."
          }
        },
        {
          "udp": {
            "host": "192.168.1.50",
            "port": 5005,
            "payload": "doorbell"
          }
        }
      ]
    }
  ]
}