summaryrefslogtreecommitdiff
path: root/jsonschema/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'jsonschema/__init__.py')
-rw-r--r--jsonschema/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/jsonschema/__init__.py b/jsonschema/__init__.py
index 619a7ea..c1cb2e9 100644
--- a/jsonschema/__init__.py
+++ b/jsonschema/__init__.py
@@ -14,6 +14,7 @@ from jsonschema._format import (
draft4_format_checker,
draft6_format_checker,
draft7_format_checker,
+ draft202012_format_checker,
)
from jsonschema._types import TypeChecker
from jsonschema.exceptions import (
@@ -28,6 +29,7 @@ from jsonschema.validators import (
Draft4Validator,
Draft6Validator,
Draft7Validator,
+ Draft202012Validator,
RefResolver,
validate,
)