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

5 statements  

« prev     ^ index     » next       coverage.py v7.3.1, created at 2023-09-25 06:44 +0000

1""" 

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

3""" 

4from referencing import Registry as _Registry 

5from referencing.jsonschema import SchemaRegistry as _SchemaRegistry 

6 

7from jsonschema_specifications._core import _schemas 

8 

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

10#: meta-schemas and vocabularies. 

11REGISTRY: _SchemaRegistry = (_schemas() @ _Registry()).crawl() 

12 

13__all__ = ["REGISTRY"]