You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Periode time, a regex for start and end is defined [0-9]{2}:[0-9]{2} but not a range 00:00 -> 24:00, even 99:00 or 0:0 would be acceptable values according to the specification.
I would propose to adjust the regex to ^(0[0-9]|1[0-9]|2[0-3]):[0-5][0-9]$.
This would ensure that all Partners have a common understanding of the raging and would prevent the 24:00/00:00 issue that could occure for the 24h format.
It would also enforce the common usage of the 24h format.
The text was updated successfully, but these errors were encountered:
In Periode time, a regex for start and end is defined
[0-9]{2}:[0-9]{2}
but not a range 00:00 -> 24:00, even 99:00 or 0:0 would be acceptable values according to the specification.I would propose to adjust the regex to
^(0[0-9]|1[0-9]|2[0-3]):[0-5][0-9]$
.This would ensure that all Partners have a common understanding of the raging and would prevent the 24:00/00:00 issue that could occure for the 24h format.
It would also enforce the common usage of the 24h format.
The text was updated successfully, but these errors were encountered: