schema_oxidation 0.1.1

Produce Rust data structures from JSON schemas.
Documentation
{
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "type": "object",

    "properties": {
        "a": {
            "type": "string"
        },
        "b": {
            "type": "object"
        },
        "c": {
            "type": "object",
            "patternProperties": {
                ".*": {
                    "type": "object"
                }
            }
        }
    }
}