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

feat: support custom ids and $defs from draft 2020-12 #44

Merged
merged 3 commits into from
Mar 3, 2025

Conversation

cakemanny
Copy link
Contributor

@cakemanny cakemanny commented Mar 2, 2025

For #43.

This pull request adds further functionality of resolving references relative to their base URI as set by the $id keyword. (The "$id" keyword, in draft-07 and in draft 2020-12).

It also expands the existing support of #/definitions/A style references, with #/$defs/A style references as found in draft 2020-12. (Schema Re-Use With "$defs", in draft 2020-12).

Since the json-schema 2020-12 spec is quite large and complicated it would be easy to get carried away with supporting various cases, I instead tried to be rather pragmatic. As has been the case so far, only subschemas in definitions or $defs are able to be referenced and so only they have their $id processed.


There are some features of how URI references are relative that could be implemented but I've chosen not to for now.

For example, given this following schema

{
    "$id": "https://example.com/root.json",
    "$defs": {
        "B": {
            "$id": "other.json"
        }
    }
}

We are not supporting

  • "$ref": "https://example.com/other.json"
  • nor "$ref": "root.json"

Both of which would be expected to resolve in a fully compliant implementation.

And with the following schema document

{
    "$id": "https://example.com/root.json",
    "$defs": {
        "B": {
            "$id": "https://example.com/other.json"
        }
    }
}

we are not supporting "$ref": "other.json".


Another caveat to point out is, due to how schemars loads $defs into definitions, it means that we treat #/$defs/A the same as #/definitions/A.
i.e. this schema is invalid but we'd still end up processing it

{
    "properties": {
        "hello": {"$ref": "#/definitions/A"}
    }
    "$defs": {
        "A": {"type": "string"}
    }
}

Looking forward to feedback and am happy to adapt if there's anything that not quite right or if you feel something is missing.

@cakemanny cakemanny requested a review from a team as a code owner March 2, 2025 16:17
@untitaker
Copy link
Member

lgtm please fix lints/formatting and we can merge

@cakemanny
Copy link
Contributor Author

ok, formatting fixed 👍

@untitaker untitaker merged commit c3f738a into getsentry:main Mar 3, 2025
4 checks passed
@untitaker
Copy link
Member

ty!

@cakemanny cakemanny deleted the expand-ref-resolution branch March 3, 2025 17:22
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.

2 participants