Here is my automation, that should send message in telegram via telegram bot.
Bot works, but automation is not (i think it is because i use Frigate Proxy, which i think works differently). How can i fix this and how can i explore what it actually sends in topics, so i can set up any trigger by myself. Sorry for bad english
alias: Notify on Person Detection
trigger:
  - platform: mqtt
    topic: frigate/events
condition:
  - condition: template
    value_template: >-
      {{ trigger.payload_json['after']['label'] == 'person' and
      trigger.payload_json['after']['camera'] == 'STREET' }}
action:
  - service: notify.ha_bot
    data:
      message: Person movement detected on the STREET camera!
mode: single
1 post - 1 participant