------------------
- Support for recursive $refs - `Issue 35`_
- Requires swagger-spec-validator 2.0.1
- Unqualified $refs no longer supported.
Bad: ``{"$ref": "User"}``
Good: ``{"$ref": "/definitions/User"}``
- Automatic tagging of models is only supported in the root swagger spec file.
If you have models defined in $ref targets that are in other files, you must
manually tag them with 'x-model' for them to be available as python types.
See `Model Discovery`_ for more info.