Skip to content

Commit

Permalink
Merge pull request #599 from leonwanghui/master
Browse files Browse the repository at this point in the history
Fix a swagger file typo error
  • Loading branch information
leonwanghui committed Jan 26, 2019
2 parents 5eac36d + 11b638b commit 63073c0
Showing 1 changed file with 18 additions and 8 deletions.
26 changes: 18 additions & 8 deletions openapi-spec/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2060,21 +2060,31 @@ parameters:
responses:
HTTPStatus400:
description: BadRequest
schema:
$ref: '#/definitions/ErrorSpec'
content:
application/json:
schema:
$ref: '#/definitions/ErrorSpec'
HTTPStatus401:
description: NotAuthorized
schema:
$ref: '#/definitions/ErrorSpec'
content:
application/json:
schema:
$ref: '#/definitions/ErrorSpec'
HTTPStatus403:
description: Forbidden
content:
application/json:
schema:
$ref: '#/definitions/ErrorSpec'
HTTPStatus404:
description: The resource does not exist
schema:
$ref: '#/definitions/ErrorSpec'
content:
application/json:
schema:
$ref: '#/definitions/ErrorSpec'
HTTPStatus500:
description: An unexpected error occured.
schema:
$ref: '#/definitions/ErrorSpec'
content:
application/json:
schema:
$ref: '#/definitions/ErrorSpec'

0 comments on commit 63073c0

Please sign in to comment.