├── .bzrignore ├── .gitignore ├── .travis.yml ├── COPYING ├── MANIFEST.in ├── README.md ├── doc ├── changes.rst ├── conf.py ├── hacking.rst ├── index.rst ├── installation.rst ├── reference.rst ├── reference │ ├── errors.rst │ ├── misc.rst │ ├── schema.rst │ ├── shortcuts.rst │ └── validator.rst └── usage.rst ├── json_schema_validator ├── __init__.py ├── errors.py ├── extensions.py ├── misc.py ├── schema.py ├── shortcuts.py ├── tests │ ├── __init__.py │ ├── test_extensions.py │ ├── test_schema.py │ └── test_validator.py └── validator.py ├── requirements └── versiontools.txt ├── schema-spec └── draft-zyp-json-schema-03.txt ├── setup.cfg ├── setup.py └── tox.ini /.bzrignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/.bzrignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/COPYING -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/README.md -------------------------------------------------------------------------------- /doc/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/doc/changes.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/hacking.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/doc/hacking.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/doc/installation.rst -------------------------------------------------------------------------------- /doc/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/doc/reference.rst -------------------------------------------------------------------------------- /doc/reference/errors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/doc/reference/errors.rst -------------------------------------------------------------------------------- /doc/reference/misc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/doc/reference/misc.rst -------------------------------------------------------------------------------- /doc/reference/schema.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/doc/reference/schema.rst -------------------------------------------------------------------------------- /doc/reference/shortcuts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/doc/reference/shortcuts.rst -------------------------------------------------------------------------------- /doc/reference/validator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/doc/reference/validator.rst -------------------------------------------------------------------------------- /doc/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/doc/usage.rst -------------------------------------------------------------------------------- /json_schema_validator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/json_schema_validator/__init__.py -------------------------------------------------------------------------------- /json_schema_validator/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/json_schema_validator/errors.py -------------------------------------------------------------------------------- /json_schema_validator/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/json_schema_validator/extensions.py -------------------------------------------------------------------------------- /json_schema_validator/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/json_schema_validator/misc.py -------------------------------------------------------------------------------- /json_schema_validator/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/json_schema_validator/schema.py -------------------------------------------------------------------------------- /json_schema_validator/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/json_schema_validator/shortcuts.py -------------------------------------------------------------------------------- /json_schema_validator/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/json_schema_validator/tests/__init__.py -------------------------------------------------------------------------------- /json_schema_validator/tests/test_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/json_schema_validator/tests/test_extensions.py -------------------------------------------------------------------------------- /json_schema_validator/tests/test_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/json_schema_validator/tests/test_schema.py -------------------------------------------------------------------------------- /json_schema_validator/tests/test_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/json_schema_validator/tests/test_validator.py -------------------------------------------------------------------------------- /json_schema_validator/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/json_schema_validator/validator.py -------------------------------------------------------------------------------- /requirements/versiontools.txt: -------------------------------------------------------------------------------- 1 | versiontools >= 1.8.2 2 | GitPython >= 0.1.6 3 | -------------------------------------------------------------------------------- /schema-spec/draft-zyp-json-schema-03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/schema-spec/draft-zyp-json-schema-03.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyga/json-schema-validator/HEAD/tox.ini --------------------------------------------------------------------------------