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

Error 'Resolver' object has no attribute 'resolving' when using resolver_with_root. #1335

Closed
nitg16 opened this issue Feb 24, 2025 · 2 comments

Comments

@nitg16
Copy link

nitg16 commented Feb 24, 2025

Draft202012Validator(schema, resolver=registry.resolver_with_root(resource)).iter_errors(instance)

When using code above, I get following error:

AttributeError: 'Resolver' object has no attribute 'resolving'

resolver_with_root is a great convenience method where we don't have to constantly prefix relative refs with parent id. It works fine when using resolver.lookup method directly, but error is received only during validation.

I noticed that when I change kwarg to '_resolver' instead of 'resolver', everything works fine without any errors. But it seems to be private. Is it safe to use?

Direct link to resolver_with_root in docs:
https://referencing.readthedocs.io/en/stable/api/#referencing.Registry.resolver_with_root

@nitg16
Copy link
Author

nitg16 commented Feb 24, 2025

BTW my use case is for openapi. When using '#/components/schemas/Xyz' refs, I can dump all components into registry and then use resolver_with_root. Resource id is automatically taken care of when resolving and I can directly use a relative schema like this into validation:

{'$ref': '#/components/schemas/Xyz'}

I have tested resolver_with_root.lookup recursively with a large openapi schema by only specifying relative refs and everything works correctly.

@Julian
Copy link
Member

Julian commented Mar 26, 2025

That argument is indeed private, and is not safe to use (and the other argument is the legacy RefResolver) -- the real fix here is to help add support for OpenAPI to referencing! Help is definitely definitely welcome on that! (The first step is to add a suite of tests to https://github.com/python-jsonschema/referencing-suite/ which cover OpenAPI's referencing behavior. I'm happy to chat further if you're interested in helping).

@Julian Julian closed this as not planned Won't fix, can't repro, duplicate, stale Mar 26, 2025
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

No branches or pull requests

2 participants