We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba45c70 commit a2fec38Copy full SHA for a2fec38
jsonschema_specifications/__init__.py
@@ -7,5 +7,5 @@
7
8
#: A `referencing.jsonschema.SchemaRegistry` containing all of the official
9
#: meta-schemas and vocabularies.
10
-REGISTRY = _schemas() @ _EMPTY_REGISTRY
+REGISTRY = (_schemas() @ _EMPTY_REGISTRY).crawl()
11
__all__ = ["REGISTRY"]
jsonschema_specifications/tests/test_jsonschema_specifications.py
@@ -8,3 +8,7 @@ def test_it_contains_metaschemas():
assert isinstance(schema, Mapping)
assert schema["$id"] == "http://json-schema.org/draft-07/schema#"
assert schema["title"] == "Core schema meta-schema"
+
12
13
+def test_it_is_crawled():
14
+ assert REGISTRY.crawl() == REGISTRY
0 commit comments