Automation time_pattern syntax

I’m trying to run an automation at 4,9,14,19… minutes past the hour. Is there a syntax for time_pattern that allows this? I can’t see anything in the documentation that indicates how to do this.

This is crude but since the trigger conditions are all or

automation:
  trigger:
    - platform: time_pattern
      minutes: 4
    - platform: time_pattern
      minutes: 9
    - platform: time_pattern
      minutes: 14
    - platform: time_pattern
      minutes: 19
    - platform: time_pattern
      minutes: 24
    - platform: time_pattern
      minutes: 29
1 Like

Crude yes, but sometimes simple is best. It does the job, so thanks