4 releases

0.6.0 Oct 6, 2021
0.5.2 May 18, 2021
0.5.1 Jul 12, 2020
0.5.0 Jul 7, 2019

#3 in #schemafy

Download history 14986/week @ 2023-12-06 14592/week @ 2023-12-13 8502/week @ 2023-12-20 8131/week @ 2023-12-27 13334/week @ 2024-01-03 15267/week @ 2024-01-10 19758/week @ 2024-01-17 15117/week @ 2024-01-24 14900/week @ 2024-01-31 17076/week @ 2024-02-07 15352/week @ 2024-02-14 15614/week @ 2024-02-21 17268/week @ 2024-02-28 18580/week @ 2024-03-06 19608/week @ 2024-03-13 16857/week @ 2024-03-20

75,154 downloads per month
Used in 77 crates (6 directly)

MIT license

6KB
129 lines

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

~0.7–1.4MB
~33K SLoC