2 releases

0.1.1 Nov 7, 2022
0.1.0 Nov 7, 2022

#5 in #schemafy

Download history 81/week @ 2024-01-07 60/week @ 2024-01-14 42/week @ 2024-01-21 38/week @ 2024-01-28 46/week @ 2024-02-04 56/week @ 2024-02-11 76/week @ 2024-02-18 106/week @ 2024-02-25 69/week @ 2024-03-03 87/week @ 2024-03-10 83/week @ 2024-03-17 133/week @ 2024-03-24 168/week @ 2024-03-31 65/week @ 2024-04-07 81/week @ 2024-04-14 90/week @ 2024-04-21

424 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
~137K SLoC