Grammar Documentation for node type "TimeRule"
Last updated
Last updated
TimeRules are rules that apply on values which have the data type "Time" from Schema.org.
The specific rule type is given by the value in the "$rule" property. The properties which rules can have are explained in the Meta_Rules.md document. Note that the "subject" property can be omitted, if the "$path" object has an empty JSON Pointer as value (see Meta_Rules.md for details).
However, the data type for the "parameter" depends on the "$rule" value (e.g. arguments for the rule function), and is explained in the following.
The "equals" rule checks if a given Time value (the validated subject) matches a given Time.
The parameter is a Time which serves as the second argument for the rule function. The validated subject must be the same as the given parameter.
The "isBefore" rule checks if a given Time value (the validated subject) is chronologically before a given Time.
The parameter is a Time which serves as the second argument for the rule function. The validated subject must be chronologically before the given parameter.
The "isAfter" rule checks if a given Time (the validated subject) is chronologically after a given Time.
The parameter is a Time which serves as the second argument for the rule function. The validated subject must be chronologically after the given parameter.
The "isInSet" rule checks if a given Time (the validated subject) is in the given set of allowed values.
The parameter is an array which contains Times, which are valid instances for a given Time (the validated subject).
The "hasHour" rule checks if a given Time (the validated subject) has a value for the hour, that is conform to a given numeric pattern.
The parameter is a numeric pattern, that has to be matched by the hour of a given Time (the validated subject).
The "hasMinutes" rule checks if a given Time (the validated subject) has a value for the minutes, that is conform to a given numeric pattern.
The parameter is a numeric pattern, that has to be matched by the minutes of a given Time (the validated subject).
The "hasSeconds" rule checks if a given Time (the validated subject) has a value for the seconds, that is conform to a given numeric pattern.
The parameter is a numeric pattern, that has to be matched by the seconds of a given Time (the validated subject).
The "hasTimezone" rule checks if a given Time (the validated value) has a value for the timezone, that matches a given value with format: (+|-)hh:mm
The parameter is a timezone string with format (+|-)hh:mm that has to be matched by the timezone of a given Time (the validated subject). "Z" or a not defined timezone are handled as a not fulfilled constraint.