schema2000 0.1.0

Schema2000 is a crate derive a JSON schema from given JSON objects
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![allow(clippy::module_name_repetitions)]

pub use generate::generate_hypothesis;
pub use merge::merge_hypothesis;
pub use model::SchemaHypothesis;
pub use renderer::render_schema;

mod generate;
mod merge;
pub mod model;
mod renderer;
mod utils;