schemafy 0.6.0

Generates serializeable Rust types from a json schema
Documentation
{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "title": "nestedtest",
    "type": "object",
    "properties": {},
    "required": [
        "top"
    ],
    "definitions": {
        "top": {
            "type": "object",
            "properties": {
                "basic": {
                    "type": "string"
                },
                "nested": {
                    "$ref": "#/definitions/top/definitions/defnested"
                }
            },
            "definitions": {
                "defnested": {
                    "type": "object",
                    "properties": {
                        "append": {
                            "type": "string"
                        }
                    }
                }
            }
        }
    }
}