├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml ├── SECURITY.md ├── dependabot.yml └── workflows │ ├── codecov.yml │ ├── codeql-analysis.yml │ └── publish.yml ├── .gitignore ├── .pep8 ├── .pre-commit-config.yaml ├── .pylintrc ├── .readthedocs.yaml ├── LICENSE ├── README.md ├── docs ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── _ext │ └── aioai3.py │ ├── _static │ └── my_custom.js │ ├── advanced.rst │ ├── api.rst │ ├── conf.py │ ├── extra.rst │ ├── index.rst │ ├── install.rst │ ├── links.rst │ ├── plugin.rst │ ├── toc.rst │ └── use.rst ├── pyproject.toml ├── renovate.json ├── requirements.txt ├── src └── aiopenapi3 │ ├── __init__.py │ ├── __main__.py │ ├── _types.py │ ├── base.py │ ├── cli.py │ ├── debug.py │ ├── errors.py │ ├── extra │ ├── __init__.py │ ├── cookies.py │ └── reduce.py │ ├── json.py │ ├── loader.py │ ├── log.py │ ├── me.py │ ├── model.py │ ├── openapi.py │ ├── plugin.py │ ├── pydanticv2.py │ ├── request.py │ ├── v20 │ ├── __init__.py │ ├── general.py │ ├── glue.py │ ├── info.py │ ├── parameter.py │ ├── paths.py │ ├── root.py │ ├── schemas.py │ ├── security.py │ ├── tag.py │ └── xml.py │ ├── v30 │ ├── __init__.py │ ├── components.py │ ├── example.py │ ├── formdata.py │ ├── general.py │ ├── glue.py │ ├── info.py │ ├── media.py │ ├── parameter.py │ ├── paths.py │ ├── root.py │ ├── schemas.py │ ├── security.py │ ├── servers.py │ ├── tag.py │ └── xml.py │ ├── v31 │ ├── __init__.py │ ├── components.py │ ├── example.py │ ├── general.py │ ├── info.py │ ├── media.py │ ├── parameter.py │ ├── paths.py │ ├── root.py │ ├── schemas.py │ ├── security.py │ ├── servers.py │ ├── tag.py │ └── xml.py │ └── version.py ├── tests ├── api │ ├── main.py │ ├── v1 │ │ ├── main.py │ │ └── schema.py │ └── v2 │ │ ├── main.py │ │ └── schema.py ├── apiv1_test.py ├── apiv2_test.py ├── cli_test.py ├── clone_test.py ├── conftest.py ├── content_length_test.py ├── data │ └── dog.png ├── debug_test.py ├── error_test.py ├── extra_test.py ├── fixtures │ ├── README.md │ ├── extra-cookie.yaml │ ├── extra-reduced.yaml │ ├── parsing-paths-content-nested-array-ref.yaml │ ├── parsing-paths-content-schema-float-validation.yaml │ ├── parsing-paths-content-schema-object.yaml │ ├── parsing-paths-invalid.yaml │ ├── parsing-paths-links-invalid.yaml │ ├── parsing-paths-links.yaml │ ├── parsing-paths-operationid-duplicate.yaml │ ├── parsing-paths-parameter-name-mismatch.yaml │ ├── parsing-paths-parameter-name-with-underscores.yaml │ ├── parsing-paths-response-ref-invalid.yaml │ ├── parsing-schema-names.yaml │ ├── parsing-schema-properties-name-empty.yaml │ ├── paths-callbacks.yaml │ ├── paths-content-schema-property-without-properties.yaml │ ├── paths-parameter-default.yaml │ ├── paths-parameter-format-complex.yaml │ ├── paths-parameter-format-v20.yaml │ ├── paths-parameter-format.yaml │ ├── paths-parameter-missing.yaml │ ├── paths-parameter-name-invalid.yaml │ ├── paths-parameters-oneOf.yaml │ ├── paths-parameters.yaml │ ├── paths-requestbody-formdata-encoding.yaml │ ├── paths-requestbody-formdata-wtforms.yaml │ ├── paths-response-content-empty-v20.yaml │ ├── paths-response-content-empty.yaml │ ├── paths-response-content-type-octet.yaml │ ├── paths-response-error-v20.yaml │ ├── paths-response-error.yaml │ ├── paths-response-header-v20.yaml │ ├── paths-response-header.yaml │ ├── paths-response-status-pattern-default.yaml │ ├── paths-security-v20.yaml │ ├── paths-security.yaml │ ├── paths-server-variables.yaml │ ├── paths-servers.yaml │ ├── paths-tags.yaml │ ├── petstore-expanded.yaml │ ├── plugin-base.yaml │ ├── schema-Of-parent-properties.yaml │ ├── schema-additionalProperties-and-named-properties.yaml │ ├── schema-additionalProperties-v20.yaml │ ├── schema-additionalProperties.yaml │ ├── schema-allof-discriminator.yaml │ ├── schema-allof-oneof-combined.yaml │ ├── schema-allof-string.yaml │ ├── schema-anyOf.yaml │ ├── schema-array.yaml │ ├── schema-baseurl-v20.yaml │ ├── schema-boolean-v20.yaml │ ├── schema-boolean.yaml │ ├── schema-constraints.yaml │ ├── schema-create-update-read.yaml │ ├── schema-date-types.yaml │ ├── schema-discriminated-union-deep.yaml │ ├── schema-discriminated-union-discriminator-name.yaml │ ├── schema-discriminated-union-extends.yaml │ ├── schema-discriminated-union-invalid-array.yaml │ ├── schema-discriminated-union-merge.yaml │ ├── schema-discriminated-union-warning.yaml │ ├── schema-discriminated-union.yaml │ ├── schema-empty.yaml │ ├── schema-enum-array.yaml │ ├── schema-enum-object.yaml │ ├── schema-enum.yaml │ ├── schema-extensions.yaml │ ├── schema-nullable-v30.yaml │ ├── schema-nullable-v31.yaml │ ├── schema-oneOf-mixed.yaml │ ├── schema-oneOf-nullable-v30.yaml │ ├── schema-oneOf-nullable-v31.yaml │ ├── schema-oneOf-properties.yaml │ ├── schema-oneOf.yaml │ ├── schema-pathitems.yaml │ ├── schema-patternProperties.yaml │ ├── schema-properties-default.yaml │ ├── schema-property-name-is-type.yaml │ ├── schema-recursion.yaml │ ├── schema-ref-nesting.yaml │ ├── schema-regex-engine.yaml │ ├── schema-self-recursion.yaml │ ├── schema-string-pattern.yaml │ ├── schema-title-name-collision.yaml │ ├── schema-type-list.yaml │ ├── schema-type-missing.yaml │ ├── schema-type-string-format-byte-base64.yaml │ ├── schema-type-validators.yaml │ └── schema-yaml12-tags.yaml ├── formdata_test.py ├── forms_test.py ├── loader_test.py ├── parse_data_test.py ├── parsing_test.py ├── path_test.py ├── pathv20_test.py ├── petstore_test.py ├── petstorev3_test.py ├── pickle_test.py ├── plugin_test.py ├── ref_test.py ├── schema_test.py ├── stream_test.py └── tls_test.py └── uv.lock /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/.github/workflows/codecov.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/.gitignore -------------------------------------------------------------------------------- /.pep8: -------------------------------------------------------------------------------- 1 | [pycodestyle] 2 | ignore = E221,E501,E731 3 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/_ext/aioai3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/docs/source/_ext/aioai3.py -------------------------------------------------------------------------------- /docs/source/_static/my_custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/docs/source/_static/my_custom.js -------------------------------------------------------------------------------- /docs/source/advanced.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/docs/source/advanced.rst -------------------------------------------------------------------------------- /docs/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/docs/source/api.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/extra.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/docs/source/extra.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/docs/source/install.rst -------------------------------------------------------------------------------- /docs/source/links.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/docs/source/links.rst -------------------------------------------------------------------------------- /docs/source/plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/docs/source/plugin.rst -------------------------------------------------------------------------------- /docs/source/toc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/docs/source/toc.rst -------------------------------------------------------------------------------- /docs/source/use.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/docs/source/use.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/pyproject.toml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/renovate.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/aiopenapi3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/__init__.py -------------------------------------------------------------------------------- /src/aiopenapi3/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/__main__.py -------------------------------------------------------------------------------- /src/aiopenapi3/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/_types.py -------------------------------------------------------------------------------- /src/aiopenapi3/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/base.py -------------------------------------------------------------------------------- /src/aiopenapi3/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/cli.py -------------------------------------------------------------------------------- /src/aiopenapi3/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/debug.py -------------------------------------------------------------------------------- /src/aiopenapi3/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/errors.py -------------------------------------------------------------------------------- /src/aiopenapi3/extra/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/extra/__init__.py -------------------------------------------------------------------------------- /src/aiopenapi3/extra/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/extra/cookies.py -------------------------------------------------------------------------------- /src/aiopenapi3/extra/reduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/extra/reduce.py -------------------------------------------------------------------------------- /src/aiopenapi3/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/json.py -------------------------------------------------------------------------------- /src/aiopenapi3/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/loader.py -------------------------------------------------------------------------------- /src/aiopenapi3/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/log.py -------------------------------------------------------------------------------- /src/aiopenapi3/me.py: -------------------------------------------------------------------------------- 1 | __all__: list[str] = [] 2 | -------------------------------------------------------------------------------- /src/aiopenapi3/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/model.py -------------------------------------------------------------------------------- /src/aiopenapi3/openapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/openapi.py -------------------------------------------------------------------------------- /src/aiopenapi3/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/plugin.py -------------------------------------------------------------------------------- /src/aiopenapi3/pydanticv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/pydanticv2.py -------------------------------------------------------------------------------- /src/aiopenapi3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/request.py -------------------------------------------------------------------------------- /src/aiopenapi3/v20/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v20/__init__.py -------------------------------------------------------------------------------- /src/aiopenapi3/v20/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v20/general.py -------------------------------------------------------------------------------- /src/aiopenapi3/v20/glue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v20/glue.py -------------------------------------------------------------------------------- /src/aiopenapi3/v20/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v20/info.py -------------------------------------------------------------------------------- /src/aiopenapi3/v20/parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v20/parameter.py -------------------------------------------------------------------------------- /src/aiopenapi3/v20/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v20/paths.py -------------------------------------------------------------------------------- /src/aiopenapi3/v20/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v20/root.py -------------------------------------------------------------------------------- /src/aiopenapi3/v20/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v20/schemas.py -------------------------------------------------------------------------------- /src/aiopenapi3/v20/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v20/security.py -------------------------------------------------------------------------------- /src/aiopenapi3/v20/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v20/tag.py -------------------------------------------------------------------------------- /src/aiopenapi3/v20/xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v20/xml.py -------------------------------------------------------------------------------- /src/aiopenapi3/v30/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v30/__init__.py -------------------------------------------------------------------------------- /src/aiopenapi3/v30/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v30/components.py -------------------------------------------------------------------------------- /src/aiopenapi3/v30/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v30/example.py -------------------------------------------------------------------------------- /src/aiopenapi3/v30/formdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v30/formdata.py -------------------------------------------------------------------------------- /src/aiopenapi3/v30/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v30/general.py -------------------------------------------------------------------------------- /src/aiopenapi3/v30/glue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v30/glue.py -------------------------------------------------------------------------------- /src/aiopenapi3/v30/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v30/info.py -------------------------------------------------------------------------------- /src/aiopenapi3/v30/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v30/media.py -------------------------------------------------------------------------------- /src/aiopenapi3/v30/parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v30/parameter.py -------------------------------------------------------------------------------- /src/aiopenapi3/v30/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v30/paths.py -------------------------------------------------------------------------------- /src/aiopenapi3/v30/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v30/root.py -------------------------------------------------------------------------------- /src/aiopenapi3/v30/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v30/schemas.py -------------------------------------------------------------------------------- /src/aiopenapi3/v30/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v30/security.py -------------------------------------------------------------------------------- /src/aiopenapi3/v30/servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v30/servers.py -------------------------------------------------------------------------------- /src/aiopenapi3/v30/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v30/tag.py -------------------------------------------------------------------------------- /src/aiopenapi3/v30/xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v30/xml.py -------------------------------------------------------------------------------- /src/aiopenapi3/v31/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v31/__init__.py -------------------------------------------------------------------------------- /src/aiopenapi3/v31/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v31/components.py -------------------------------------------------------------------------------- /src/aiopenapi3/v31/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v31/example.py -------------------------------------------------------------------------------- /src/aiopenapi3/v31/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v31/general.py -------------------------------------------------------------------------------- /src/aiopenapi3/v31/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v31/info.py -------------------------------------------------------------------------------- /src/aiopenapi3/v31/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v31/media.py -------------------------------------------------------------------------------- /src/aiopenapi3/v31/parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v31/parameter.py -------------------------------------------------------------------------------- /src/aiopenapi3/v31/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v31/paths.py -------------------------------------------------------------------------------- /src/aiopenapi3/v31/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v31/root.py -------------------------------------------------------------------------------- /src/aiopenapi3/v31/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v31/schemas.py -------------------------------------------------------------------------------- /src/aiopenapi3/v31/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v31/security.py -------------------------------------------------------------------------------- /src/aiopenapi3/v31/servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/src/aiopenapi3/v31/servers.py -------------------------------------------------------------------------------- /src/aiopenapi3/v31/tag.py: -------------------------------------------------------------------------------- 1 | from ..v30.tag import Tag 2 | -------------------------------------------------------------------------------- /src/aiopenapi3/v31/xml.py: -------------------------------------------------------------------------------- 1 | from ..v30.xml import XML 2 | -------------------------------------------------------------------------------- /src/aiopenapi3/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.9.0" 2 | -------------------------------------------------------------------------------- /tests/api/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/api/main.py -------------------------------------------------------------------------------- /tests/api/v1/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/api/v1/main.py -------------------------------------------------------------------------------- /tests/api/v1/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/api/v1/schema.py -------------------------------------------------------------------------------- /tests/api/v2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/api/v2/main.py -------------------------------------------------------------------------------- /tests/api/v2/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/api/v2/schema.py -------------------------------------------------------------------------------- /tests/apiv1_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/apiv1_test.py -------------------------------------------------------------------------------- /tests/apiv2_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/apiv2_test.py -------------------------------------------------------------------------------- /tests/cli_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/cli_test.py -------------------------------------------------------------------------------- /tests/clone_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/clone_test.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/content_length_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/content_length_test.py -------------------------------------------------------------------------------- /tests/data/dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/data/dog.png -------------------------------------------------------------------------------- /tests/debug_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/debug_test.py -------------------------------------------------------------------------------- /tests/error_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/error_test.py -------------------------------------------------------------------------------- /tests/extra_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/extra_test.py -------------------------------------------------------------------------------- /tests/fixtures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/README.md -------------------------------------------------------------------------------- /tests/fixtures/extra-cookie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/extra-cookie.yaml -------------------------------------------------------------------------------- /tests/fixtures/extra-reduced.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/extra-reduced.yaml -------------------------------------------------------------------------------- /tests/fixtures/parsing-paths-content-nested-array-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/parsing-paths-content-nested-array-ref.yaml -------------------------------------------------------------------------------- /tests/fixtures/parsing-paths-content-schema-float-validation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/parsing-paths-content-schema-float-validation.yaml -------------------------------------------------------------------------------- /tests/fixtures/parsing-paths-content-schema-object.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/parsing-paths-content-schema-object.yaml -------------------------------------------------------------------------------- /tests/fixtures/parsing-paths-invalid.yaml: -------------------------------------------------------------------------------- 1 | openapi: "3.0.0" 2 | info: 3 | title: This is broken on purpose 4 | paths: 5 | -------------------------------------------------------------------------------- /tests/fixtures/parsing-paths-links-invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/parsing-paths-links-invalid.yaml -------------------------------------------------------------------------------- /tests/fixtures/parsing-paths-links.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/parsing-paths-links.yaml -------------------------------------------------------------------------------- /tests/fixtures/parsing-paths-operationid-duplicate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/parsing-paths-operationid-duplicate.yaml -------------------------------------------------------------------------------- /tests/fixtures/parsing-paths-parameter-name-mismatch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/parsing-paths-parameter-name-mismatch.yaml -------------------------------------------------------------------------------- /tests/fixtures/parsing-paths-parameter-name-with-underscores.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/parsing-paths-parameter-name-with-underscores.yaml -------------------------------------------------------------------------------- /tests/fixtures/parsing-paths-response-ref-invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/parsing-paths-response-ref-invalid.yaml -------------------------------------------------------------------------------- /tests/fixtures/parsing-schema-names.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/parsing-schema-names.yaml -------------------------------------------------------------------------------- /tests/fixtures/parsing-schema-properties-name-empty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/parsing-schema-properties-name-empty.yaml -------------------------------------------------------------------------------- /tests/fixtures/paths-callbacks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/paths-callbacks.yaml -------------------------------------------------------------------------------- /tests/fixtures/paths-content-schema-property-without-properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/paths-content-schema-property-without-properties.yaml -------------------------------------------------------------------------------- /tests/fixtures/paths-parameter-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/paths-parameter-default.yaml -------------------------------------------------------------------------------- /tests/fixtures/paths-parameter-format-complex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/paths-parameter-format-complex.yaml -------------------------------------------------------------------------------- /tests/fixtures/paths-parameter-format-v20.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/paths-parameter-format-v20.yaml -------------------------------------------------------------------------------- /tests/fixtures/paths-parameter-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/paths-parameter-format.yaml -------------------------------------------------------------------------------- /tests/fixtures/paths-parameter-missing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/paths-parameter-missing.yaml -------------------------------------------------------------------------------- /tests/fixtures/paths-parameter-name-invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/paths-parameter-name-invalid.yaml -------------------------------------------------------------------------------- /tests/fixtures/paths-parameters-oneOf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/paths-parameters-oneOf.yaml -------------------------------------------------------------------------------- /tests/fixtures/paths-parameters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/paths-parameters.yaml -------------------------------------------------------------------------------- /tests/fixtures/paths-requestbody-formdata-encoding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/paths-requestbody-formdata-encoding.yaml -------------------------------------------------------------------------------- /tests/fixtures/paths-requestbody-formdata-wtforms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/paths-requestbody-formdata-wtforms.yaml -------------------------------------------------------------------------------- /tests/fixtures/paths-response-content-empty-v20.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/paths-response-content-empty-v20.yaml -------------------------------------------------------------------------------- /tests/fixtures/paths-response-content-empty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/paths-response-content-empty.yaml -------------------------------------------------------------------------------- /tests/fixtures/paths-response-content-type-octet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/paths-response-content-type-octet.yaml -------------------------------------------------------------------------------- /tests/fixtures/paths-response-error-v20.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/paths-response-error-v20.yaml -------------------------------------------------------------------------------- /tests/fixtures/paths-response-error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/paths-response-error.yaml -------------------------------------------------------------------------------- /tests/fixtures/paths-response-header-v20.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/paths-response-header-v20.yaml -------------------------------------------------------------------------------- /tests/fixtures/paths-response-header.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/paths-response-header.yaml -------------------------------------------------------------------------------- /tests/fixtures/paths-response-status-pattern-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/paths-response-status-pattern-default.yaml -------------------------------------------------------------------------------- /tests/fixtures/paths-security-v20.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/paths-security-v20.yaml -------------------------------------------------------------------------------- /tests/fixtures/paths-security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/paths-security.yaml -------------------------------------------------------------------------------- /tests/fixtures/paths-server-variables.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/paths-server-variables.yaml -------------------------------------------------------------------------------- /tests/fixtures/paths-servers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/paths-servers.yaml -------------------------------------------------------------------------------- /tests/fixtures/paths-tags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/paths-tags.yaml -------------------------------------------------------------------------------- /tests/fixtures/petstore-expanded.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/petstore-expanded.yaml -------------------------------------------------------------------------------- /tests/fixtures/plugin-base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/plugin-base.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-Of-parent-properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-Of-parent-properties.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-additionalProperties-and-named-properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-additionalProperties-and-named-properties.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-additionalProperties-v20.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-additionalProperties-v20.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-additionalProperties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-additionalProperties.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-allof-discriminator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-allof-discriminator.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-allof-oneof-combined.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-allof-oneof-combined.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-allof-string.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-allof-string.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-anyOf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-anyOf.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-array.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-array.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-baseurl-v20.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-baseurl-v20.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-boolean-v20.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-boolean-v20.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-boolean.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-boolean.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-constraints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-constraints.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-create-update-read.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-create-update-read.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-date-types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-date-types.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-discriminated-union-deep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-discriminated-union-deep.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-discriminated-union-discriminator-name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-discriminated-union-discriminator-name.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-discriminated-union-extends.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-discriminated-union-extends.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-discriminated-union-invalid-array.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-discriminated-union-invalid-array.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-discriminated-union-merge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-discriminated-union-merge.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-discriminated-union-warning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-discriminated-union-warning.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-discriminated-union.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-discriminated-union.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-empty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-empty.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-enum-array.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-enum-array.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-enum-object.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-enum-object.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-enum.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-enum.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-extensions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-extensions.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-nullable-v30.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-nullable-v30.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-nullable-v31.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-nullable-v31.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-oneOf-mixed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-oneOf-mixed.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-oneOf-nullable-v30.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-oneOf-nullable-v30.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-oneOf-nullable-v31.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-oneOf-nullable-v31.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-oneOf-properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-oneOf-properties.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-oneOf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-oneOf.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-pathitems.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-pathitems.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-patternProperties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-patternProperties.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-properties-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-properties-default.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-property-name-is-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-property-name-is-type.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-recursion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-recursion.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-ref-nesting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-ref-nesting.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-regex-engine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-regex-engine.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-self-recursion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-self-recursion.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-string-pattern.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-string-pattern.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-title-name-collision.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-title-name-collision.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-type-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-type-list.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-type-missing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-type-missing.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-type-string-format-byte-base64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-type-string-format-byte-base64.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-type-validators.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-type-validators.yaml -------------------------------------------------------------------------------- /tests/fixtures/schema-yaml12-tags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/fixtures/schema-yaml12-tags.yaml -------------------------------------------------------------------------------- /tests/formdata_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/formdata_test.py -------------------------------------------------------------------------------- /tests/forms_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/forms_test.py -------------------------------------------------------------------------------- /tests/loader_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/loader_test.py -------------------------------------------------------------------------------- /tests/parse_data_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/parse_data_test.py -------------------------------------------------------------------------------- /tests/parsing_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/parsing_test.py -------------------------------------------------------------------------------- /tests/path_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/path_test.py -------------------------------------------------------------------------------- /tests/pathv20_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/pathv20_test.py -------------------------------------------------------------------------------- /tests/petstore_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/petstore_test.py -------------------------------------------------------------------------------- /tests/petstorev3_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/petstorev3_test.py -------------------------------------------------------------------------------- /tests/pickle_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/pickle_test.py -------------------------------------------------------------------------------- /tests/plugin_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/plugin_test.py -------------------------------------------------------------------------------- /tests/ref_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/ref_test.py -------------------------------------------------------------------------------- /tests/schema_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/schema_test.py -------------------------------------------------------------------------------- /tests/stream_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/stream_test.py -------------------------------------------------------------------------------- /tests/tls_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/tests/tls_test.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonism/aiopenapi3/HEAD/uv.lock --------------------------------------------------------------------------------