Skip to main content

An implementation of JSON Schema validation for Python

Project description

jsonschema is an implementation of JSON Schema for Python (supporting 2.6+ including Python 3).

>>> from jsonschema import validate

>>> # A sample schema, like what we'd get from json.load()
>>> schema = {
...     "type" : "object",
...     "properties" : {
...         "price" : {"type" : "number"},
...         "name" : {"type" : "string"},
...     },
... }

>>> # If no exception is raised by validate(), the instance is valid.
>>> validate({"name" : "Eggs", "price" : 34.99}, schema)

>>> validate(
...     {"name" : "Eggs", "price" : "Invalid"}, schema
... )                                   # doctest: +IGNORE_EXCEPTION_DETAIL
Traceback (most recent call last):
    ...
ValidationError: 'Invalid' is not of type 'number'

Features

Release Notes

v1.0.0 is a new major release of jsonschema.

It includes two major new features: support for the newly released draft 4 of the specification (thanks to Chase Sterling) and optional support for format (thanks to Norman Hooper).

It also contains two major backwards incompatible changes: draft 4 is now the default for schemas without $schema specified, and ValidationErrors now have path in sequential order.

It also fixes a minor issue with longs not being recognized as integers and a number of issues with the support for $ref.

Also, ValidatorMixin can be used to construct concrete validators for users who wish to create their own from scratch.

As always, see the documentation for details.

v1.1.0 fixes a bug whereby URIs were not canonicalized when stored and looked up (#70) and also allows for registering exceptions that can be accessed from ValidationErrors when validating format properties (#77).

Running the Test Suite

jsonschema uses the wonderful Tox for its test suite. (It really is wonderful, if for some reason you haven’t heard of it, you really should use it for your projects).

Assuming you have tox installed (perhaps via pip install tox or your package manager), just run tox in the directory of your source checkout to run jsonschema’s test suite on all of the versions of Python jsonschema supports. Note that you’ll need to have all of those versions installed in order to run the tests on each of them, otherwise tox will skip (and fail) the tests on that version.

Contributing

I’m Julian Berman.

jsonschema is on GitHub.

Get in touch, via GitHub or otherwise, if you’ve got something to contribute, it’d be most welcome!

You can also generally find me on Freenode (nick: tos9) in various channels, including #python.

Project details


Release history Release notifications | RSS feed

This version

1.1.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

jsonschema-1.1.0.zip (55.4 kB view details)

Uploaded Source

jsonschema-1.1.0.tar.gz (34.3 kB view details)

Uploaded Source

File details

Details for the file jsonschema-1.1.0.zip.

File metadata

  • Download URL: jsonschema-1.1.0.zip
  • Upload date:
  • Size: 55.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for jsonschema-1.1.0.zip
Algorithm Hash digest
SHA256 4d75f51e6292e6b93f1eec671bce1c342eabb4f2f1fb49b80f3e1a7c3c85e0cd
MD5 9a60b79a754e05eaf8dab6ad68f15b45
BLAKE2b-256 d798dc16669a24901c4bee058829e40f692e1ce8bffd4ffb26869920e21fc180

See more details on using hashes here.

File details

Details for the file jsonschema-1.1.0.tar.gz.

File metadata

  • Download URL: jsonschema-1.1.0.tar.gz
  • Upload date:
  • Size: 34.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for jsonschema-1.1.0.tar.gz
Algorithm Hash digest
SHA256 f260c1e2374a880fed3513baa8c7b510e8002cf5fed6325c03b0fd271a01843e
MD5 57e9885e47e631ce6d800a3d6c33cf0a
BLAKE2b-256 d1ebbfd9c8bffdb6acf52f2d48ccd53c70b9aa4ebaaad7ba084b48b1624ea136

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page