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

4 statements  

« prev     ^ index     » next       coverage.py v7.3.2, created at 2023-12-08 06:51 +0000

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"]