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).is_ok());
// 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.
- π 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
The following drafts are supported:
You can check the current status on the Bowtie Report.
- Tauri: Config validation
- Apollo Router: Config file validation
- qsv: CSV record validation with custom keyword & format validator
jsonschema
outperforms other Rust JSON Schema validators in most scenarios:
- Up to 20-470x faster than
valico
andjsonschema_valid
for complex schemas - Generally 3-20x faster than
boon
For detailed benchmarks, see our full performance comparison.
This crate requires Rust 1.70 or later.
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.
If you have questions, need help, or want to suggest improvements, please use GitHub Discussions.
If you find jsonschema
useful, please consider sponsoring its development.
We welcome contributions! Here's how you can help:
- Share your use cases
- Implement missing keywords
- Fix failing test cases from the JSON Schema test suite
See CONTRIBUTING.md for more details.
Licensed under MIT License.