jsonschema_code_generator 0.1.1

Crate for generating rust types from JSON schemas
Documentation
{
  "type": "object",
  "title": "Root title",
  "required": [
    "property"
  ],
  "enum": [
    "a",
    "b",
    "c"
  ],
  "constant": "42",
  "oneOf": [
    {
      "type": "object",
      "properties": {
        "property": {
          "type": "string"
        }
      }
    },
    {
      "type": "string"
    }
  ]
}