-
-
Notifications
You must be signed in to change notification settings - Fork 15
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
Check all $refs are resolvable #115
Comments
Hi! No worries. For an arbitrary JSON Schema there actually isn't a feasible way to do this in general -- specifically for For some schemas it's possible, particularly if you limit to Ultimately my real recommendation actually has nothing to do with |
All the above aside, if there are tools that this library should offer to make this easier, I definitely won't claim it's a fully solved problem, so I'm open to ideas, I just don't think something like |
Thanks for the fast reply! The reason I want this is actually because I'm writing tests for the schema. So your recommendation would be to test the |
Maybe I'm assuming the wrong scenario then --
If you have refs The {
"title": "my cool schema",
"$ref": "urn:example:foo",
"$defs": {
"positiveInteger": {"$id": "urn:example:foo", "type": "integer", "minimum": 1},
}
} (or the same applies if you have So you should have some unit test that instead looks like Does that help, or am I misunderstanding what you have or are doing? |
Yeah, that's exactly what I meant. If someone else modifies the schema to add a potentially broken |
Yeah I think for that you have to simply enforce that schema changes come with test changes same as code changes need to. Glad to help. |
I've added 5 json schemas which cross-reference each other and refer to
$defs
in the same file using$ref
into aRegistry
. Is there a straightforward way to check if all of the$ref
s resolve successfully? I can of course useresolver.lookup()
on individual paths - I'd like that, but automatically, for all$ref
s. I've spent some time looking at the docs and code for this library and haven't figured it out, but apologies if I've missed something obvious. (If not, I guess I need to use jsonref for this?)The text was updated successfully, but these errors were encountered: