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
Describe the bug
It looks like the start time, for example: 2022-02-24T08:12:20.013+0200 does not comply the pattern of ^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}.\\d{3}(Z|[+-]\\d{4})$.
To Reproduce
Generate build-info and validate schema.
Expected behavior
Build info validated successfully.
This report is bogus. The validator did not validate 2022-02-24T08:12:20.013+0200 - but 2022-02-24T06:12:20.013+02:00 instead. The time zone designator got completely mangled and then incorrectly re-applied.
However, the validation regex is still malformed, because the . for separating milliseconds was not escaped.
Describe the bug
It looks like the start time, for example:
2022-02-24T08:12:20.013+0200
does not comply the pattern of^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}.\\d{3}(Z|[+-]\\d{4})$
.To Reproduce
Generate build-info and validate schema.
Expected behavior
Build info validated successfully.
Screenshots
Additional context
I used https://www.jsonschemavalidator.net to validate the schema.
The text was updated successfully, but these errors were encountered: