Skip to content

Commit f8c9be4

Browse files
cjwatsonstephenfin
authored andcommitted
Support OpenAPI Specification 3.1.1
OAS 3.1.1 added https://github.com/OAI/OpenAPI-Specification/blob/main/tests/v3.1/pass/non-oauth-scopes.yaml, which indicates that it's possible for the `responses` object to be missing; this caused a test failure. It seems reasonable enough to default to an empty dictionary.
1 parent 8705b7f commit f8c9be4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sphinxcontrib/openapi/openapi31.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ def _httpresource(
279279
):
280280
# https://github.com/OAI/OpenAPI-Specification/blob/3.1.0/versions/3.1.0.md#operation-object
281281
parameters = properties.get("parameters", [])
282-
responses = properties["responses"]
282+
responses = properties.get("responses", {})
283283
query_param_examples = []
284284
indent = " "
285285

tests/OpenAPI-Specification

0 commit comments

Comments
 (0)