Multiple alerts

Hello,
I have somme difficulties to have more than one alert.
I read the forum and included alert as a separate file.

In that file, I put:

door_fridge_alert:
        name: 'door_fridge_open'
        done_message: "door fridge now close"
        entity_id: binary_sensor.fridge_door
        state: 'on'
        repeat: 1
        can_acknowledge: true
        skip_first: true
        notifiers:
          - pushbullet
      
watter_heater_alert:
        name: 'watter_heater_flood'
        done_message: "No more watter heater flood alert"
        entitiy_id: binary_sensor.watter_heater_flood_captor
        state: off
        repeat: 1
        can_acknwoledge: true
        skip_first: false
        notifyers:
         - pushbullet

It’s right if I put only one alert. With two alerts it’s create config error.

What is the syntax for multiple alerts ? i try with ‘-’ but it doesnt work too

Many thanks for your help
Regards

You have typos in the second block: entitiy_id, can_acknwoledge, and notifyers. The errors you saw should have pointed those out.
off should also be 'off'

You also have very large indentations. 2 spaces is common convention.

Many thanks !!!
Best regards

Thierry