├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md ├── docs ├── conf.py └── index.rst ├── jsonschema2db.py ├── setup.py └── test ├── test.py ├── test_pp_to_def.json ├── test_refs.json ├── test_schema.json └── test_time_schema.json /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/better/jsonschema2db/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/better/jsonschema2db/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/better/jsonschema2db/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/better/jsonschema2db/HEAD/README.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/better/jsonschema2db/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/better/jsonschema2db/HEAD/docs/index.rst -------------------------------------------------------------------------------- /jsonschema2db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/better/jsonschema2db/HEAD/jsonschema2db.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/better/jsonschema2db/HEAD/setup.py -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/better/jsonschema2db/HEAD/test/test.py -------------------------------------------------------------------------------- /test/test_pp_to_def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/better/jsonschema2db/HEAD/test/test_pp_to_def.json -------------------------------------------------------------------------------- /test/test_refs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/better/jsonschema2db/HEAD/test/test_refs.json -------------------------------------------------------------------------------- /test/test_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/better/jsonschema2db/HEAD/test/test_schema.json -------------------------------------------------------------------------------- /test/test_time_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/better/jsonschema2db/HEAD/test/test_time_schema.json --------------------------------------------------------------------------------