Automation: (Loops) How to repeat an action 4 times ..at 90 second intervals

Thanks. Tried to use what I found from the below resource when searching for loops in automations:

Anyway, I’m still having trouble incorporating the Counted Repeat example given in the link you provided here with my automation below. I’d really appreciate assistance to repeat the below notifications 4 times with a 90 second delay between notifications:

- id: '1597611826726'
  alias: Back Door open warning
  trigger:
  - entity_id: binary_sensor.ecolink_door_window_sensor_sensor_2
    for: 00:07:00
    from: 'off'
    platform: state
    to: 'on'
  action:
  - data:
      entity_id: media_player.living_room_speaker
      message: Please don't forget to close the back door!
    service: tts.google_translate_say
  - data:
      data:
        type: announce
      message: Please don't forget to close the back door!
      target:
      - media_player.mka_net_echo_dot
    service: notify.alexa_media
  - data:
      message: Please don't forget to close the back door!
    service: notify.sms_family
  mode: single