schemafy 0.6.0

Generates serializeable Rust types from a json schema
Documentation
{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "title": "recursive_types",
    "type": "object",
    "properties": {},
    "required": [
        "test_a"
    ],
    "definitions": {
        "test_a": {
            "properties": {
                "arr": {
                    "type": "array",
                    "$ref": "#/definitions/test_a"
                },
                "ref": {
                    "$ref": "#/definitions/test_a"
                }
            }
        }
    }
}