7 releases (4 breaking)

0.5.2 Nov 8, 2023
0.5.1 Nov 17, 2022
0.5.0 Jul 11, 2022
0.4.0 Mar 12, 2020
0.1.0 Apr 12, 2019

#234 in Database interfaces

Download history 311/week @ 2023-12-13 145/week @ 2023-12-20 102/week @ 2023-12-27 426/week @ 2024-01-03 541/week @ 2024-01-10 751/week @ 2024-01-17 360/week @ 2024-01-24 572/week @ 2024-01-31 684/week @ 2024-02-07 714/week @ 2024-02-14 619/week @ 2024-02-21 768/week @ 2024-02-28 875/week @ 2024-03-06 915/week @ 2024-03-13 712/week @ 2024-03-20 368/week @ 2024-03-27

3,038 downloads per month
Used in 7 crates

MPL-2.0 license

115KB
2K SLoC

jsonschema-valid

A simple JSON schema validator for Rust. Unlike many of the alternatives, this just focusses on validating a document against a schema and providing nice error messages. There is no object mapping magic or anything like that.

Supports JSON Schema Drafts 4, 6, and 7.

This repository includes copies of the JSON schema metaschemas, which are compiled into the binary. These are all listed in the JSON schema specification links page. Specifically:

  • src/draft4.json comes from https://json-schema.org/draft-04/schema
  • src/draft6.json comes from https://json-schema.org/draft-06/schema
  • src/draft7.json comes from https://json-schema.org/draft-07/schema

Release process

This project uses cargo-release and follows the Semantic Versioning process.

To release a new version:

  1. Make sure all changes are in the CHANGELOG.md. Add missing changes and commit them.
  2. Run cargo release [level]
    • [level] should be one of major, minor or patch depending on the inluded changes.
  3. You're done.

License

This code is released under the Mozilla Public License, v. 2.0. See LICENSE.

Dependencies

~6.5–9MB
~180K SLoC