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

#2365 in Database interfaces

Download history 21667/week @ 2024-07-18 23098/week @ 2024-07-25 23366/week @ 2024-08-01 19589/week @ 2024-08-08 23995/week @ 2024-08-15 22277/week @ 2024-08-22 21189/week @ 2024-08-29 20665/week @ 2024-09-05 24626/week @ 2024-09-12 20733/week @ 2024-09-19 46845/week @ 2024-09-26 27629/week @ 2024-10-03 22979/week @ 2024-10-10 21258/week @ 2024-10-17 23195/week @ 2024-10-24 22226/week @ 2024-10-31

94,610 downloads per month
Used in 89 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.6MB
~34K SLoC