summaryrefslogtreecommitdiff
path: root/jsonschema/__init__.py
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2018-09-29 08:54:43 -0400
committerJulian Berman <Julian@GrayVines.com>2018-09-30 09:37:25 -0400
commit7c16622e291b516ee23e85a05b89a1a5be97b46a (patch)
tree5367786f6d8ed5f2f5ed7f6ea1f12a933088ddc8 /jsonschema/__init__.py
parente0add0ee189d9aa97f8326a27da6a925e24a5cae (diff)
downloadjsonschema-7c16622e291b516ee23e85a05b89a1a5be97b46a.tar.gz
First step on Draft7 support.
Add everything that's the same in Draft6, which appears to just leave out if/then/else.
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 fb10f5a..0da56aa 100644
--- a/jsonschema/__init__.py
+++ b/jsonschema/__init__.py
@@ -17,12 +17,14 @@ from jsonschema._format import (
draft3_format_checker,
draft4_format_checker,
draft6_format_checker,
+ draft7_format_checker,
)
from jsonschema._types import TypeChecker
from jsonschema.validators import (
Draft3Validator,
Draft4Validator,
Draft6Validator,
+ Draft7Validator,
RefResolver,
validate,
)