ZRC-90 Generic Blueprint

Hello,
I own 3 ZRC-90s and I would like to create a blueprint to allow me to create 1 automation for all the buttons/scenes per device (to control lights, alexa etc).
Based on my understanding, I should be able to achieve this (!?), by triggering the automation for the generic zwave.scene_activated event and specific ZRC (device_id: !input ‘remote’) as per below.
The problem I have is that I haven’t seen an example interpreting the scene data. I assume scene data will be there, but I am not sure what values should I expect and “catch” to trigger the different buttons.
For example I know the button 3 on the remote will send this:

scene_id: 3
scene_data: 0

… but I don’t know where to get this from … ?
Any hints ?

Current code snip …

  domain: automation
  input:
    remote:
      name: ZRC-90 Remote
      description: ZRC-90 remote
      selector:
        device:
          integration: zwave
          manufacturer: Remotec
          model: ZRC-90
    button_3_tap:
      name: Button 3 button - tap
      description: Action to run on the tap of the Button 3
      default: []
      selector:
        action: {}
trigger:
- platform: event
  event_type: zwave.scene_activated
  event_data: 
    device_id: !input 'remote'
action:

Thank you!

Later Edit: Found one already done :): Remotec ZRC-90 Scene Master 8 button remote (zwave-js)