Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/jsonschema_specifications/__init__.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

5 statements  

1""" 

2The JSON Schema meta-schemas and vocabularies, exposed as a Registry. 

3""" 

4 

5from referencing.jsonschema import EMPTY_REGISTRY as _EMPTY_REGISTRY 

6 

7from jsonschema_specifications._core import _schemas 

8 

9#: A `referencing.jsonschema.SchemaRegistry` containing all of the official 

10#: meta-schemas and vocabularies. 

11REGISTRY = (_schemas() @ _EMPTY_REGISTRY).crawl() 

12__all__ = ["REGISTRY"]