2 releases

0.1.1 Nov 7, 2022
0.1.0 Nov 7, 2022

#5 in #schemafy

Download history 120/week @ 2023-12-13 102/week @ 2023-12-20 38/week @ 2023-12-27 50/week @ 2024-01-03 77/week @ 2024-01-10 57/week @ 2024-01-17 33/week @ 2024-01-24 38/week @ 2024-01-31 48/week @ 2024-02-07 77/week @ 2024-02-14 80/week @ 2024-02-21 93/week @ 2024-02-28 80/week @ 2024-03-06 70/week @ 2024-03-13 131/week @ 2024-03-20 93/week @ 2024-03-27

379 downloads per month
Used in 24 crates (3 directly)

MIT license

200KB
1.5K SLoC

schemafy

Build Status Docs

This is a Rust crate which can take a JSON schema (draft 4) and generate Rust types which are serializable with serde. No checking such as min_value are done but instead only the structure of the schema is followed as closely as possible.

As a schema could be arbitrarily complex this crate makes no guarantee that it can generate good types or even any types at all for a given schema but the crate does manage to bootstrap itself which is kind of cool.

Example

Generated types for VS Codes debug server protocol: https://docs.rs/debugserver-types

Development

The types generated by the JSON schema specification can be regenerated with cargo build --features internal-regenerate if changes have been made in the library itself. Rustfmt is required so that src/schema.rs is readable.

Dependencies

~2–12MB
~135K SLoC