Scheduling
Certain entities can be set to run on a specific schedule
Currently supported entities:
Test case
Test suite
Profiling object
Metadata schemas
Schedule types
Not scheduled - Entity will not be run automatically
Selected day(s) - Entity will run on selected days at a selected time
Monthly - Entity will run every month on a selected day (In case month does not have enough days, it will be run on the last day)
Custom - Entity will run on a specified interval, every N minutes
CRON - Entity will run on user specified time

Entity will run every month on a selected day (In case month does not have enough days, it will be run on the last day)

Supports UNIX (5-field) and Quartz (6/7-field).
Detection: 5 fields → UNIX; 6 or 7 fields → Quartz.
Special chars: UNIX: * , - /. Quartz: * , - / ? L W #.
UNIX examples
*/15 * * * * – Every 15 minutes.
0 9-17 * * * – Every hour, between 09:00 and 17:00.
Quartz examples
0 59 23 L * ? – 23:59 on the last day of the month.
0 0 10 ? * MON-FRI – 10:00 on weekdays.


