Value from json (with points)

I’m trying to set up a mqtt sensor. Receiving a json (android app “Broadcast to MQtT”). This json comes with 6 attributes, but an attribute comes with points: android.intent.extra.ALARM_COUNT. the configuration below does not work because it considers the points as secondary attributes:
- platform: mqtt
state_topic: “android/broadcast/redminote”
name: “Despertador Phone”
value_template: ‘{{ value_json.android.intent.extra.ALARM_COUNT}}’

If you show the whole payload from the message, I think it will be easier for someone to answer.

You should be able to use square brackets to access your data. Have you tried

value_template: '{{ value_json["android.intent.extra.ALARM_COUNT"] }}'

value_template: ‘{{ value_json[“android.intent.extra.ALARM_COUNT”] }}’

it worked, tks!