├── .bumpversion.cfg ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── build-docs.yml │ ├── python-publish.yml │ └── python-test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── .travis.yml ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── SECURITY.md ├── docs ├── conf.py ├── contributing.rst ├── format.rst ├── index.rst ├── make.bat ├── references.rst └── validation.rst ├── openapi_schema_validator ├── __init__.py ├── _format.py ├── _keywords.py ├── _types.py ├── py.typed ├── shortcuts.py └── validators.py ├── poetry.lock ├── pyproject.toml └── tests ├── integration └── test_validators.py └── unit └── test_shortcut.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [p1c2u] 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/.github/workflows/build-docs.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/python-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/.github/workflows/python-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/README.rst -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/docs/contributing.rst -------------------------------------------------------------------------------- /docs/format.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/docs/format.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/references.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/docs/references.rst -------------------------------------------------------------------------------- /docs/validation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/docs/validation.rst -------------------------------------------------------------------------------- /openapi_schema_validator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/openapi_schema_validator/__init__.py -------------------------------------------------------------------------------- /openapi_schema_validator/_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/openapi_schema_validator/_format.py -------------------------------------------------------------------------------- /openapi_schema_validator/_keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/openapi_schema_validator/_keywords.py -------------------------------------------------------------------------------- /openapi_schema_validator/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/openapi_schema_validator/_types.py -------------------------------------------------------------------------------- /openapi_schema_validator/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openapi_schema_validator/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/openapi_schema_validator/shortcuts.py -------------------------------------------------------------------------------- /openapi_schema_validator/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/openapi_schema_validator/validators.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/integration/test_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/tests/integration/test_validators.py -------------------------------------------------------------------------------- /tests/unit/test_shortcut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-openapi/openapi-schema-validator/HEAD/tests/unit/test_shortcut.py --------------------------------------------------------------------------------