Generate a 5-field cron expression (minute hour day month weekday).
Runs daily at 09:00.
Cron expressions are used by schedulers (Linux cron, many job runners) to run tasks on a repeating schedule.
Daily at 09:00 → 0 9 * * * Weekly at 09:00 Mon → 0 9 * * 1
1. Pick a preset (daily/weekly/monthly).
2. Set time fields (minute/hour).
3. Copy the generated cron expression.