A cycle number represented in the format YYYYMMDD.HHMMSS
where YYYY represents the year, MM the month (1..12), DD
the day of the months (01..31), HH the hour (00..23), MM
the minute (00..59), and SS the second (00..59). The cycle
number is using Coordinated Universal Time (UTC).
day-of-month
uint8
A day of a month of the Gregorian calendar.
day-of-months-or-all
union
A day of a month or a wildcard indicating all days
of a month.
glob-pattern
string
A glob style pattern (following POSIX.2 fnmatch() without
special treatment of file paths):
* matches a sequence of characters
? matches a single character
[seq] matches any character in seq
[!seq] matches any character not in seq
A backslash followed by a character matches the following
character. In particular:
\\* matches *
\\? matches ?
\\\\ matches \\
A sequence seq may be a sequence of characters (e.g., [abc]
or a range of characters (e.g., [a-c]).
hour
uint8
An hour of a day.
hour-or-all
union
An hour of a day or a wildcard indicating all hours
of a day.
identifier
string
A string value used to name something.
minute
uint8
A minute of an hour.
minute-or-all
union
A minute of an hour or a wildcard indicating all
minutes of an hour.
month
enumeration
A type modeling the month in the Gregorian calendar.
month-or-all
union
A month or a wildcard indicating all twelve months.
second
uint8
A second of a minute.
second-or-all
union
A second of a minute or a wildcard indicating all
seconds of a minute.
status-code
int32
A status code returned by the execution of a Task. Note
that the actual range is implementation dependent, but it
should be portable to use values in the range 0..127 for
regular exit codes. By convention, 0 indicates successful
termination. Negative values may be used to indicate
abnormal termination due to a signal; the absolute value
may identify the signal number in this case.
tag
string
A tag consists of at least one character.
timezone-offset
string
A time zone offset as it is used by the date-and-time type
defined in the ietf-yang-types module. The value Z is
equivalent to +00:00. The value -00:00 indicates an
unknown time-offset.
weekday
enumeration
A type modeling the weekdays in the Gregorian calendar.
The numbering follows the ISO 8601 scheme.
weekday-or-all
union
A weekday or a wildcard indicating all seven weekdays.