jsonschema_code_generator 2.0.0

Crate for generating rust types from JSON schemas
Documentation
{
  "type": "object",
  "title": "Loop",
  "properties": {
    "a": {
      "$ref": "#/definitions/b"
    }
  },
  "definitions": {
    "b": {
      "type": "object",
      "properties": {
        "c": {
          "$ref": "loop2.schema.json#/definitions/c"
        }
      }
    }
  }
}