55 releases (25 breaking)

0.26.1 Oct 29, 2024
0.25.1 Oct 25, 2024
0.18.0 May 7, 2024
0.17.1 Jul 5, 2023
0.2.0 Mar 30, 2020

#10 in Web programming

Download history 145990/week @ 2024-07-31 243636/week @ 2024-08-07 190388/week @ 2024-08-14 166372/week @ 2024-08-21 160014/week @ 2024-08-28 275199/week @ 2024-09-04 210453/week @ 2024-09-11 200637/week @ 2024-09-18 209029/week @ 2024-09-25 217231/week @ 2024-10-02 224656/week @ 2024-10-09 362856/week @ 2024-10-16 281323/week @ 2024-10-23 318536/week @ 2024-10-30 417426/week @ 2024-11-06 427494/week @ 2024-11-13

1,504,289 downloads per month
Used in 157 crates (91 directly)

MIT license

720KB
17K SLoC

jsonschema

crates.io docs.rs build status codecov.io Supported Dialects

A high-performance JSON Schema validator for Rust.

use serde_json::json;

fn main() -> Result<(), Box<dyn std::error::Error>> {
    let schema = json!({"maxLength": 5});
    let instance = json!("foo");

    // One-off validation
    assert!(jsonschema::is_valid(&schema, &instance));
    assert!(jsonschema::validate(&schema, &instance));

    // Build & reuse (faster)
    let validator = jsonschema::validator_for(&schema)?;

    // Fail on first error
    assert!(validator.validate(&instance));

    // Iterate over errors
    for error in validator.iter_errors(&instance) {
        eprintln!("Error: {error}");
        eprintln!("Location: {}", error.instance_path);
    }

    // Boolean result
    assert!(validator.is_valid(&instance));

    Ok(())
}

You also can use it from the command line via the jsonschema-cli crate.

$ jsonschema-cli schema.json -i instance.json

See more usage examples in the documentation.

⚠️ Upgrading from older versions? Check our Migration Guide for key changes.

Highlights

  • 📚 Full support for popular JSON Schema drafts
  • 🔧 Custom keywords and format validators
  • 🌐 Remote reference fetching (network/file)
  • 🎨 Basic output style as per JSON Schema spec
  • 🔗 Bindings for Python
  • 🚀 WebAssembly support
  • 💻 Command Line Interface

Supported drafts

The following drafts are supported:

  • Draft 2020-12
  • Draft 2019-09
  • Draft 7
  • Draft 6
  • Draft 4

You can check the current status on the Bowtie Report.

Notable Users

Performance

jsonschema outperforms other Rust JSON Schema validators in most scenarios:

  • Up to 20-470x faster than valico and jsonschema_valid for complex schemas
  • Generally 3-20x faster than boon

For detailed benchmarks, see our full performance comparison.

Minimum Supported Rust Version (MSRV)

This crate requires Rust 1.70 or later.

Acknowledgements

This library draws API design inspiration from the Python jsonschema package. We're grateful to the Python jsonschema maintainers and contributors for their pioneering work in JSON Schema validation.

Support

If you have questions, need help, or want to suggest improvements, please use GitHub Discussions.

Sponsorship

If you find jsonschema useful, please consider sponsoring its development.

Contributing

We welcome contributions! Here's how you can help:

See CONTRIBUTING.md for more details.

License

Licensed under MIT License.

Dependencies

~8–19MB
~277K SLoC