jsonschema_code_generator 0.1.1

Crate for generating rust types from JSON schemas
Documentation
{
  "type": "object",
  "title": "Twice",
  "properties": {
    "a": {
      "$ref": "#/definitions/c"
    },
    "b": {
      "$ref": "#/definitions/c"
    }
  },
  "definitions": {
    "c": {
      "type": "object",
      "title": "c",
      "properties": {
        "foo": {}
      }
    }
  }
}