Skip to content
New issue

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

Removed strict $schema: const, so that https also gets transformed #187

Merged
merged 10 commits into from
Apr 1, 2024

Conversation

Era-cell
Copy link
Contributor

@Era-cell Era-cell commented Mar 28, 2024

In the previous rules latest dialects had to use https and old ones http, while both redirect to valid meta-schema's.
I wasted time not knowing why $schema: https://json-schema.org/draft/draft-07/schema had strict restrictions.
So, I am making a PR on this. Please review my PR @jviotti

Era-cell and others added 8 commits March 16, 2024 09:28
Signed-off-by: Suprith KG <suprith7kg@gmail.com>
Signed-off-by: Suprith KG <suprith7kg@gmail.com>
Signed-off-by: Suprith KG <suprith7kg@gmail.com>
Signed-off-by: Suprith KG <suprith7kg@gmail.com>
Signed-off-by: Suprith KG <suprith7kg@gmail.com>
Signed-off-by: Suprith KG <suprith7kg@gmail.com>
Signed-off-by: Suprith KG <77973415+Era-cell@users.noreply.github.com>
@jviotti
Copy link
Member

jviotti commented Mar 28, 2024

I know the http URLs do a redirection to the https variant, but I'm not sure if taking those into account is purely valid, as their id does remain as the plain http one. Let me dig deeper

@jviotti
Copy link
Member

jviotti commented Mar 28, 2024

Asked here: https://json-schema.slack.com/archives/CT8QRGTK5/p1711651006084029. I believe it is not valid, but I might be wrong. From my understanding, the fact that the official URLs redirect or not is orthogonal to the actual identifiers and its validity might be questionable.

@@ -10,7 +10,8 @@
"required": [ "$schema" ],
"properties": {
"$schema": {
"const": "https://json-schema.org/draft/2019-09/schema"
"type":"string",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"type":"string",
"type": "string",

Let's be consistent with spacing after : here and in the other rules

@@ -10,7 +10,8 @@
"required": [ "$schema" ],
"properties": {
"$schema": {
"const": "https://json-schema.org/draft/2019-09/schema"
"type":"string",
"pattern": "http[s]?://json-schema.org/draft/2019-09/schema[#]?"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This pattern matches the given URL in a wider string. You should limit the regex with ^ and $

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, correct 😅 I missed this

@@ -62,7 +73,9 @@
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/sourcemeta/alterschema/rules/jsonschema-draft7-to-2019-09/definitions",
"type": "object",
"required": [ "definitions" ],
"required": [
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All of these look like irrelevant formatting changes. Can we omit them from this PR? If we want to reformat, let's do it on a separate PR purely dedicated to that

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Got it

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You should probably add a few tests exercising these new rules if we want to get them in

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alright, my auto-formatter does this thing in VS Code. I can add the tests.
But these tests are validating syntax, but meta schema validation. So, should that be included under standard test-suite?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, I mean just upgrade tests that confirm that if you pass the HTTPS URLs they get upgraded too, etc. No actual meta-schema validation needs to take place

@jviotti
Copy link
Member

jviotti commented Mar 28, 2024

So it is not technically invalid assuming implementations fetch schemas over HTTP, but it's also not 100% correct and there will be implementations that do not support it. In any case, I guess it doesn't hurt covering this case for implementations that do work in that way 👍

@Era-cell
Copy link
Contributor Author

Era-cell commented Mar 29, 2024

So it is not technically invalid assuming implementations fetch schemas over HTTP, but it's also not 100% correct and there will be implementations that do not support it. In any case, I guess it doesn't hurt covering this case for implementations that do work in that way 👍

I am thinking for such cases where it depends on implementations, it is better to inform the user by providing a warning(also in website will be cooler) or so, because the alterschema maybe isolated from implementations.
Helping user to save time and avoid confusion

@jviotti
Copy link
Member

jviotti commented Mar 29, 2024

Yep, agreed on the warning. Because Alterschema is not just the web app, you can note on your proposal a way for rules to echo back "warnings" to the caller than we can bubble up somehow

Signed-off-by: Suprith KG <suprith7kg@gmail.com>
@Era-cell
Copy link
Contributor Author

@jviotti changes have been done, can you review the PR...

@jviotti jviotti merged commit 16034fa into sourcemeta:master Apr 1, 2024
3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants