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
A schema with "$schema": "http://json-schema.org/draft-06/schema" i.e. no trailing # will make jesse believe this is not a draft6 schema, and complain about unsupported schema.
http://json-schema.org/draft-06/schema# is equivalent to http://json-schema.org/draft-06/schema and should be treated as such.
The text was updated successfully, but these errors were encountered:
I plan to send a PR to parse the schema url and match the parts, but curious if this really needs to continue to support OTP-19 and 20? Would like to just use uri_string from the stdlib.
I don't think there should be a need to support http://json-schema.org/draft-06/schema without the trailing#. I think that the JSON schema specification strictly uses it.
A schema with
"$schema": "http://json-schema.org/draft-06/schema"
i.e. no trailing#
will make jesse believe this is not a draft6 schema, and complain about unsupported schema.http://json-schema.org/draft-06/schema#
is equivalent tohttp://json-schema.org/draft-06/schema
and should be treated as such.The text was updated successfully, but these errors were encountered: