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
For link and action hrefs, is the anything preventing the use of relative uris? Does the spec specify that all uris must be absolute?
The text was updated successfully, but these errors were encountered:
One of the examples that @kevinswiber gave in #42 was http://fizzbuzzaas.herokuapp.com/, this uses relative URLs.
Sorry, something went wrong.
The JSON schema unfortunately uses format: uri which theoretically prevents relative URIs from being valid: https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.7.3.5
format: uri
One would have to use format: uri-reference to allow for absolute and relative ones.
format: uri-reference
No branches or pull requests
For link and action hrefs, is the anything preventing the use of relative uris? Does the spec specify that all uris must be absolute?
The text was updated successfully, but these errors were encountered: