Skip to main content

Fast JSON Schema validation for Python implemented in Rust

Project description

jsonschema-rs

Build Version Python versions License

Fast JSON Schema validation for Python implemented in Rust.

Supported drafts:

  • Draft 7
  • Draft 6
  • Draft 4

There are some notable restrictions at the moment:

  • The underlying Rust crate doesn't support arbitrary precision integers yet, which may lead to SystemError when such value is used;
  • Unicode surrogates are not supported;

Installation

To install jsonschema-rs via pip run the following command:

pip install jsonschema-rs

Usage

To check if the input document is valid:

import jsonschema_rs

validator = jsonschema_rs.JSONSchema({"minimum": 42})
validator.is_valid(45)  # True

or:

import jsonschema_rs

validator = jsonschema_rs.JSONSchema({"minimum": 42})
validator.validate(41)  # raises ValidationError

If you have a schema as a JSON string, then you could use jsonschema_rs.JSONSchema.from_str to avoid parsing on the Python side:

import jsonschema_rs

validator = jsonschema_rs.JSONSchema.from_str('{"minimum": 42}')
...

You can define custom format checkers:

import jsonschema_rs

def is_currency(value):
    # The input value is always a string
    return len(value) == 3 and value.isascii()


validator = jsonschema_rs.JSONSchema(
    {"type": "string", "format": "currency"}, 
    formats={"currency": is_currency}
)
validator.is_valid("USD")  # True
validator.is_valid("invalid")  # False

Performance

According to our benchmarks, jsonschema-rs is usually faster than existing alternatives in real-life scenarios.

However, for small schemas & inputs it might be slower than fastjsonschema or jsonschema on PyPy.

Input values and schemas

Case Schema size Instance size
OpenAPI 18 KB 4.5 MB
Swagger 25 KB 3.0 MB
Canada 4.8 KB 2.1 MB
CITM catalog 2.3 KB 501 KB
Fast (valid) 595 B 55 B
Fast (invalid) 595 B 60 B

Compiled validators (when the input schema is compiled once and reused later). jsonschema-rs comes in three variants in the tables below:

  • validate. This method raises ValidationError on errors or returns None on their absence.
  • is_valid. A faster method that returns a boolean result whether the instance is valid.
  • overhead. Only transforms data to underlying Rust types and do not perform any validation. Shows the Python -> Rust data conversion cost.

Ratios are given against the validate variant.

Small schemas:

library true {"minimum": 10} Fast (valid) Fast (invalid)
jsonschema-rs[validate] 93.84 ns 94.83 ns 1.2 us 1.84 us
jsonschema-rs[is_valid] 70.22 ns (x0.74) 68.26 ns (x0.71) 688.70 ns (x0.57) 1.26 us (x0.68)
jsonschema-rs[overhead] 65.27 ns (x0.69) 66.90 ns (x0.70) 461.53 ns (x0.38) 925.16 ns (x0.50)
fastjsonschema[CPython] 58.19 ns (x0.62) 105.77 ns (x1.11) 3.98 us (x3.31) 4.57 us (x2.48)
fastjsonschema[PyPy] 10.39 ns (x0.11) 34.96 ns (x0.36) 866 ns (x0.72) 916 ns (x0.49)
jsonschema[CPython] 235.06 ns (x2.50) 1.86 us (x19.6) 56.26 us (x46.88) 59.39 us (x32.27)
jsonschema[PyPy] 40.83 ns (x0.43) 232.41 ns (x2.45) 21.82 us (x18.18) 22.23 us (x12.08)

Large schemas:

library Zuora (OpenAPI) Kubernetes (Swagger) Canada (GeoJSON) CITM catalog
jsonschema-rs[validate] 17.311 ms 15.194 ms 5.018 ms 4.765 ms
jsonschema-rs[is_valid] 16.605 ms (x0.95) 12.610 ms (x0.82) 4.954 ms (x0.98) 2.792 ms (x0.58)
jsonschema-rs[overhead] 12.017 ms (x0.69) 8.005 ms (x0.52) 3.702 ms (x0.73) 2.303 ms (x0.48)
fastjsonschema[CPython] -- (1) 90.305 ms (x5.94) 32.389 ms (6.45) 12.020 ms (x2.52)
fastjsonschema[PyPy] -- (1) 37.204 ms (x2.44) 8.450 ms (x1.68) 4.888 ms (x1.02)
jsonschema[CPython] 764.172 ms (x44.14) 1.063 s (x69.96) 1.301 s (x259.26) 115.362 ms (x24.21)
jsonschema[PyPy] 604.557 ms (x34.92) 619.744 ms (x40.78) 524.275 ms (x104.47) 25.275 ms (x5.30)

Notes:

  1. fastjsonschema fails to compile the Open API spec due to the presence of the uri-reference format (that is not defined in Draft 4). However, unknown formats are explicitly supported by the spec.

The bigger the input is the bigger is performance win. You can take a look at benchmarks in benches/bench.py.

Package versions:

  • jsonschema-rs - latest version from the repository
  • jsonschema - 3.2.0
  • fastjsonschema - 2.15.1

Measured with stable Rust 1.56, CPython 3.9.7 / PyPy3 7.3.6 on Intel i8700K

Python support

jsonschema-rs supports CPython 3.7, 3.8, 3.9, 3.10, 3.11, and 3.12.

License

The code in this project is licensed under MIT license. By contributing to jsonschema-rs, you agree that your contributions will be licensed under its MIT license.

Project details


Download files

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

Source Distribution

jsonschema_rs-0.18.0.tar.gz (124.9 kB view hashes)

Uploaded Source

Built Distributions

jsonschema_rs-0.18.0-cp312-none-win_amd64.whl (1.8 MB view hashes)

Uploaded CPython 3.12 Windows x86-64

jsonschema_rs-0.18.0-cp312-none-win32.whl (1.7 MB view hashes)

Uploaded CPython 3.12 Windows x86

jsonschema_rs-0.18.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view hashes)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

jsonschema_rs-0.18.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view hashes)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

jsonschema_rs-0.18.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view hashes)

Uploaded CPython 3.12 manylinux: glibc 2.12+ i686

jsonschema_rs-0.18.0-cp312-cp312-macosx_10_12_x86_64.whl (1.7 MB view hashes)

Uploaded CPython 3.12 macOS 10.12+ x86-64

jsonschema_rs-0.18.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.4 MB view hashes)

Uploaded CPython 3.12 macOS 10.12+ universal2 (ARM64, x86-64) macOS 10.12+ x86-64 macOS 11.0+ ARM64

jsonschema_rs-0.18.0-cp311-none-win_amd64.whl (1.8 MB view hashes)

Uploaded CPython 3.11 Windows x86-64

jsonschema_rs-0.18.0-cp311-none-win32.whl (1.7 MB view hashes)

Uploaded CPython 3.11 Windows x86

jsonschema_rs-0.18.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

jsonschema_rs-0.18.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

jsonschema_rs-0.18.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.12+ i686

jsonschema_rs-0.18.0-cp311-cp311-macosx_10_12_x86_64.whl (1.7 MB view hashes)

Uploaded CPython 3.11 macOS 10.12+ x86-64

jsonschema_rs-0.18.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.4 MB view hashes)

Uploaded CPython 3.11 macOS 10.12+ universal2 (ARM64, x86-64) macOS 10.12+ x86-64 macOS 11.0+ ARM64

jsonschema_rs-0.18.0-cp310-none-win_amd64.whl (1.8 MB view hashes)

Uploaded CPython 3.10 Windows x86-64

jsonschema_rs-0.18.0-cp310-none-win32.whl (1.7 MB view hashes)

Uploaded CPython 3.10 Windows x86

jsonschema_rs-0.18.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

jsonschema_rs-0.18.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

jsonschema_rs-0.18.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686

jsonschema_rs-0.18.0-cp310-cp310-macosx_10_12_x86_64.whl (1.7 MB view hashes)

Uploaded CPython 3.10 macOS 10.12+ x86-64

jsonschema_rs-0.18.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.4 MB view hashes)

Uploaded CPython 3.10 macOS 10.12+ universal2 (ARM64, x86-64) macOS 10.12+ x86-64 macOS 11.0+ ARM64

jsonschema_rs-0.18.0-cp39-none-win_amd64.whl (1.8 MB view hashes)

Uploaded CPython 3.9 Windows x86-64

jsonschema_rs-0.18.0-cp39-none-win32.whl (1.7 MB view hashes)

Uploaded CPython 3.9 Windows x86

jsonschema_rs-0.18.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

jsonschema_rs-0.18.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

jsonschema_rs-0.18.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

jsonschema_rs-0.18.0-cp39-cp39-macosx_10_12_x86_64.whl (1.7 MB view hashes)

Uploaded CPython 3.9 macOS 10.12+ x86-64

jsonschema_rs-0.18.0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.4 MB view hashes)

Uploaded CPython 3.9 macOS 10.12+ universal2 (ARM64, x86-64) macOS 10.12+ x86-64 macOS 11.0+ ARM64

jsonschema_rs-0.18.0-cp38-none-win_amd64.whl (1.8 MB view hashes)

Uploaded CPython 3.8 Windows x86-64

jsonschema_rs-0.18.0-cp38-none-win32.whl (1.7 MB view hashes)

Uploaded CPython 3.8 Windows x86

jsonschema_rs-0.18.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

jsonschema_rs-0.18.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

jsonschema_rs-0.18.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

jsonschema_rs-0.18.0-cp38-cp38-macosx_10_12_x86_64.whl (1.7 MB view hashes)

Uploaded CPython 3.8 macOS 10.12+ x86-64

jsonschema_rs-0.18.0-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.4 MB view hashes)

Uploaded CPython 3.8 macOS 10.12+ universal2 (ARM64, x86-64) macOS 10.12+ x86-64 macOS 11.0+ ARM64

jsonschema_rs-0.18.0-cp37-none-win_amd64.whl (1.8 MB view hashes)

Uploaded CPython 3.7 Windows x86-64

jsonschema_rs-0.18.0-cp37-none-win32.whl (1.7 MB view hashes)

Uploaded CPython 3.7 Windows x86

jsonschema_rs-0.18.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

jsonschema_rs-0.18.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

jsonschema_rs-0.18.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

jsonschema_rs-0.18.0-cp37-cp37m-macosx_10_12_x86_64.whl (1.7 MB view hashes)

Uploaded CPython 3.7m macOS 10.12+ x86-64

jsonschema_rs-0.18.0-cp37-cp37m-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.4 MB view hashes)

Uploaded CPython 3.7m macOS 10.12+ universal2 (ARM64, x86-64) macOS 10.12+ x86-64 macOS 11.0+ ARM64

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