Missing Property Event

HASSIO .112.1 - Synology DSM 6.2.3-25426 - DS1618+

I’m getting an error in my automations.yaml “Missing Property Event”

The automation is for executing a scene at a specific time of day.

- id: '1594013890110'
  alias: After Dinner Lighting
  description: Activate Scene After Dinner Lighting
  trigger:
  - at: '20:00'
    platform: time
  condition: []
  action:
  - scene: scene.after_dinner_lighting

Your action is not correct :

- id: '1594013890110'
  alias: After Dinner Lighting
  description: Activate Scene After Dinner Lighting
  trigger:
  - at: '20:00'
    platform: time
  condition: []
  action:
  - service: scene.turn_on
    data:
      entity_id: scene.after_dinner_lighting

That was fast, easy, and totally makes sense now. Thank you very much.