jsonschema-valid

Crates.iojsonschema-valid
lib.rsjsonschema-valid
version0.5.2
sourcesrc
created_at2019-04-12 19:16:35.529932
updated_at2023-11-08 14:03:30.106801
descriptionA simple JSON schema validator.
homepage
repositoryhttps://github.com/mdboom/jsonschema-valid
max_upload_size
id127513
size1,060,823
Alessio Placitelli (Dexterp37)

documentation

README

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.

Commit count: 110

cargo fmt