Scheduler patterns are used to match a date time occurrence, no matter if it represents an hour, a day, or anything else. Date time patterns are used in tagged values of a Scheduler in the component diagram. A pattern can be a sequence of sub-patterns.

Example of a Date Time Pattern

0,2,3,10-15,33,30-40,56,*
0,2,3matches the single values 0, 2, and 3
10-15matches a range of six numbers: 10,11,12,13,14, and 15
33matches the single value 33
30-40matches the range of 11 numbers: 30 to 40 inclusive.
Note that this range includes, and makes obsolete in this sequence, the previous sub-pattern: 33.
56matches the single value 56
*matches every value.
Note that this sub-pattern makes obsolete all previous sub-patterns.