├── .gitignore ├── .travis.yml ├── CHANGES.md ├── CONTRIBUTING.md ├── README.md ├── dev-resources ├── person-swagger.png ├── person.png └── schema.png ├── project.clj ├── src └── schema_viz │ └── core.clj └── test └── schema_viz └── core_test.clj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/schema-viz/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/schema-viz/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/schema-viz/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/schema-viz/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/schema-viz/HEAD/README.md -------------------------------------------------------------------------------- /dev-resources/person-swagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/schema-viz/HEAD/dev-resources/person-swagger.png -------------------------------------------------------------------------------- /dev-resources/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/schema-viz/HEAD/dev-resources/person.png -------------------------------------------------------------------------------- /dev-resources/schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/schema-viz/HEAD/dev-resources/schema.png -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/schema-viz/HEAD/project.clj -------------------------------------------------------------------------------- /src/schema_viz/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/schema-viz/HEAD/src/schema_viz/core.clj -------------------------------------------------------------------------------- /test/schema_viz/core_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/schema-viz/HEAD/test/schema_viz/core_test.clj --------------------------------------------------------------------------------