Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/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

4 statements  

1""" 

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

3""" 

4from referencing.jsonschema import EMPTY_REGISTRY as _EMPTY_REGISTRY 

5 

6from jsonschema_specifications._core import _schemas 

7 

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

9#: meta-schemas and vocabularies. 

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

11__all__ = ["REGISTRY"]