Publishing MQTT with floorplan failing

Hi,

I’m using floorplan for my house. I’m trying to get double tap to publish an MQTT message to my lighting control system to disable motion detection.

However, every time I double tap, I get the following error:
Failed to call service mqtt/publish. extra keys not allowed @ data[‘entity_id’]

According to the floorplan documentation, all call services from HAS are supported.

I have this working in a non floorplan dash board.

Thanks for you help!!

        - entities:
            - light.living_light
            - light.den_light
          tap_action:
            action: toggle
          double_tap_action:
            action: call-service
            service: mqtt.publish
            target: {}
            data:
              topic: homeassistant/motion/den/set
              payload: '{"disable": "yes"}'