You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The response property I believe should be responses under the Reusing Responses section of the documentation page for Describing Responses. I've included a snippet of the portion of the example spec below for reference.
paths:
/users:
get:
summary: Gets a list of users.
response:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/ArrayOfUsers'
'401':
$ref: '#/components/responses/Unauthorized' # <-----
The text was updated successfully, but these errors were encountered:
The
response
property I believe should beresponses
under the Reusing Responses section of the documentation page for Describing Responses. I've included a snippet of the portion of the example spec below for reference.The text was updated successfully, but these errors were encountered: