#json-schema

macro bin schemafy

Generates serializeable Rust types from a json schema

17 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
0.1.1 Nov 27, 2016

#550 in Procedural macros

Download history 14794/week @ 2024-06-19 11705/week @ 2024-06-26 12815/week @ 2024-07-03 12841/week @ 2024-07-10 13628/week @ 2024-07-17 14386/week @ 2024-07-24 15263/week @ 2024-07-31 12684/week @ 2024-08-07 12773/week @ 2024-08-14 13811/week @ 2024-08-21 12222/week @ 2024-08-28 11402/week @ 2024-09-04 14965/week @ 2024-09-11 11685/week @ 2024-09-18 29290/week @ 2024-09-25 20218/week @ 2024-10-02

78,136 downloads per month
Used in 15 crates (5 directly)

MIT license

110KB
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

~1.3–2.2MB
~44K SLoC