Closed epamroskoshinsky closed 2 years ago
The value 2021-03-18T18:00:00+0000
is incorrect because the timezone offset is missing a :
. In RFC 3339 and ISO 8601, this character is required:
date-time = full-date "T" full-time
full-time = partial-time time-offset
time-offset = "Z" / time-numoffset
time-numoffset = ("+" / "-") time-hour ":" time-minute
If you use 2021-03-18T18:00:00+00:00
(note added :
) then this should be valid.
"name": "jsonschema", "version": "1.4.0",
I have noticed, that the valid date-time format represented by the value "2021-03-18T18:00:00+0000" generate a validation error. Probably, this variant will be correct:
...