- Sponsor
-
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
How to build a registry from a simple OpenAPI document dict? #160
Comments
I haven't looked at this carefully but two things:
|
Support for OpenAPI would be greatly appreciated. |
For anyone who is looking for a solution, this worked for me. from referencing import Registry, Resource
from referencing.jsonschema import DRAFT202012
from jsonschema import Draft202012Validator
registry = Registry()
# Dump all openapi components as is (don't edit #/components/schemas/Xyz style refs).
parent_schema = {"components": spec['components']}
schema = Resource(contents=parent_schema, specification=DRAFT202012)
registry = registry.with_resource(uri="parent", resource=schema)
# Now validate using:
Draft202012Validator(
schema={"$ref": "parent#/components/schemas/Xyz"},
instance={},
registry=registry
)
# You can name 'parent' anything, probaly filename or url for your spec file if you are cross-referencing. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm trying to build a registry
but then it fails during validation
with
how do I correctly build a registry from an OpenAPI dict? Docs don't mention this
Thanks
The text was updated successfully, but these errors were encountered: