I am new to Airflow and wanted to ask how to schedule a airflow workflow 2 times in a day e.g. I need to schedule a airflow dag at 10:00 am and 7:00 pm from 2022-03-24, so after some research I think it will be like
interval='0 10,19 * * *'
date='2022-03-23'
schedule_interval=interval
start_date=date
is my understanding is correct ?
Thanks in advance,