""" An implementation of JSON Schema for Python The main functionality is provided by the validator classes for each of the supported JSON Schema versions. Most commonly, :func:`validate` is the quickest way to simply validate a given instance under a schema, and will create a validator for you. """ from jsonschema.exceptions import ( ErrorTree, FormatError, RefResolutionError, SchemaError, ValidationError ) from jsonschema._format import ( FormatChecker, draft3_format_checker, draft4_format_checker, ) from jsonschema.validators import ( Draft3Validator, Draft4Validator, RefResolver, validate ) from jsonschema._version import __version__ # flake8: noqa
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
__pycache__ | Folder | 0755 |
|
|
schemas | Folder | 0755 |
|
|
tests | Folder | 0755 |
|
|
__init__.py | File | 679 B | 0644 |
|
__main__.py | File | 39 B | 0644 |
|
_format.py | File | 6.88 KB | 0644 |
|
_reflect.py | File | 4.91 KB | 0644 |
|
_utils.py | File | 4.92 KB | 0644 |
|
_validators.py | File | 11.98 KB | 0644 |
|
_version.py | File | 122 B | 0644 |
|
cli.py | File | 2.1 KB | 0644 |
|
compat.py | File | 1.52 KB | 0644 |
|
exceptions.py | File | 6.86 KB | 0644 |
|
validators.py | File | 15.83 KB | 0644 |
|