Need help with config to open/close Flair smart vent

I have implemented @RobertD502 Flair custom component via HACS and it tested as working. Now I want to set one of the smart vents to open at 8 am and close at 7 pm.

Here is what I’ve tried so far, but it is not closing her vent when I test. Any thoughts on how force the vent to close at 8 a.m.?

alias: Flair Test
description: ''
trigger:
  - platform: time
    at: '08:00:00'
condition:
  - condition: state
    entity_id: fan.flair_vent_suzanne_s_room
    state: '100'
    attribute: percent_open
action:
  - condition: state
    entity_id: fan.flair_vent_suzanne_s_room
    state: '0'
    attribute: percent_open
mode: single
action:
  service: fan.set_percentage
  data:
    percentage: 0

Stopped because an error was encountered at November 2, 2021, 5:26:54 PM (runtime: 0.01 seconds)

must contain at least one of entity_id, device_id, area_id.

Oops. Try this:

action:
  service: fan.set_percentage
  target:
    entity_id: fan.flair_vent_suzanne_s_room
  data:
    percentage: 0

Thanks @tom_l that worked. For anyone else who is wanting to set this up, below is the full YAML:

alias: Flair Suzanne Vent Open Morning
description: ''
trigger:
  - platform: time
    at: '08:00:00'
condition: null
action:
  - service: fan.set_percentage
    data:
      percentage: 100
    target:
      entity_id: fan.flair_vent_suzanne_s_room
mode: single