2 releases

0.1.1 Nov 7, 2022
0.1.0 Nov 7, 2022

#5 in #schemafy

Download history 94/week @ 2024-08-31 55/week @ 2024-09-07 75/week @ 2024-09-14 84/week @ 2024-09-21 62/week @ 2024-09-28 6/week @ 2024-10-05 45/week @ 2024-10-12 45/week @ 2024-10-19 54/week @ 2024-10-26 66/week @ 2024-11-02 17/week @ 2024-11-09 30/week @ 2024-11-16 65/week @ 2024-11-23 89/week @ 2024-11-30 101/week @ 2024-12-07 71/week @ 2024-12-14

339 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–11MB
~142K SLoC