How to trigger automation based on OpenZWave/1/command/setvalue/?

The topic OpenZWave/1/command/setvalue/ is quite a busy one but I want to trigger an automation when the value is {"ValueIDKey": 357138449, "Value": ***anything***}. I’d rather not have the automation triggering for every single ValueIDKey that changes and condition the action with a condition template, unless I have to. If I do, what should the template look like?

I’ve tried

platform: mqtt
topic: OpenZWave/1/command/setvalue

but it does not trigger on anything.

Typo! Missing “/”…again!!

This works…

  trigger:
  - platform: mqtt
    topic: OpenZWave/1/command/setvalue/
  condition:
  - condition: template
    value_template: '{{ trigger.payload_json[''ValueIDKey''] == 357138449 }}'
  action:
  - delay: 00:00:10
  - service: mqtt.publish
    data:
      topic: OpenZWave/1/command/refreshvalue/
      payload: '{ "ValueIDKey": 357138449 }'
  mode: single