__init__.py 385 B

1234567891011
  1. """
  2. The JSON Schema meta-schemas and vocabularies, exposed as a Registry.
  3. """
  4. from referencing.jsonschema import EMPTY_REGISTRY as _EMPTY_REGISTRY
  5. from jsonschema_specifications._core import _schemas
  6. #: A `referencing.jsonschema.SchemaRegistry` containing all of the official
  7. #: meta-schemas and vocabularies.
  8. REGISTRY = (_schemas() @ _EMPTY_REGISTRY).crawl()
  9. __all__ = ["REGISTRY"]