We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
metaschema/schema/xml/metaschema-datatypes.xsd
Line 38 in a36f579
The timezone portion of the regex is (Z|[+-][0-9]{2}:[0-9]{2})
(Z|[+-][0-9]{2}:[0-9]{2})
According to RFC 3339, the proper format is:
time-hour = 2DIGIT ; 00-23 time-minute = 2DIGIT ; 00-59 <...> time-numoffset = ("+" / "-") time-hour ":" time-minute time-offset = "Z" / time-numoffset
The timezone regex should be (Z|([+|-])([0-1][0-9]|2[0-3]):([0-5][0-9]))
(Z|([+|-])([0-1][0-9]|2[0-3]):([0-5][0-9]))
There is a similar error here:
Line 56 in a36f579
The text was updated successfully, but these errors were encountered:
Fixes usnistgov#400
ae61908
Fixes #400 (#401)
cec8027
* Corrected TZ pattern in XML and JSON date data types. Resolves #400 Co-authored-by: David Waltermire <[email protected]>
Successfully merging a pull request may close this issue.
metaschema/schema/xml/metaschema-datatypes.xsd
Line 38 in a36f579
The timezone portion of the regex is
(Z|[+-][0-9]{2}:[0-9]{2})
According to RFC 3339, the proper format is:
The timezone regex should be
(Z|([+|-])([0-1][0-9]|2[0-3]):([0-5][0-9]))
There is a similar error here:
metaschema/schema/xml/metaschema-datatypes.xsd
Line 56 in a36f579
The text was updated successfully, but these errors were encountered: