Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(content-fixtures): update to conform with OpenAPI 3.0.3 spec #4728

Merged
merged 1 commit into from
Jan 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,10 @@ paths:
schema:
$ref: "#/definitions/Pet"
responses:
"405":
description: "Invalid input"
"400":
description: Invalid input
"422":
description: Validation exception
security:
- petstore_auth:
- "write:pets"
Expand Down Expand Up @@ -82,7 +84,7 @@ paths:
description: "Invalid ID supplied"
"404":
description: "Pet not found"
"405":
"422":
description: "Validation exception"
security:
- petstore_auth:
Expand Down Expand Up @@ -216,8 +218,10 @@ paths:
required: false
type: "string"
responses:
"405":
description: "Invalid input"
"400":
description: Invalid input
"422":
description: Validation exception
security:
- petstore_auth:
- "write:pets"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ paths:
description: Invalid ID supplied
'404':
description: Pet not found
'405':
'422':
description: Validation exception
security:
- petstore_auth:
Expand Down Expand Up @@ -106,8 +106,10 @@ paths:
application/xml:
schema:
$ref: '#/components/schemas/Pet'
'405':
'400':
description: Invalid input
'422':
description: Validation exception
security:
- petstore_auth:
- write:pets
Expand Down Expand Up @@ -248,7 +250,7 @@ paths:
schema:
type: string
responses:
'405':
'400':
description: Invalid input
security:
- petstore_auth:
Expand Down Expand Up @@ -363,8 +365,10 @@ paths:
application/json:
schema:
$ref: '#/components/schemas/Order'
'405':
'400':
description: Invalid input
'422':
description: Validation exception
/store/order/{orderId}:
get:
tags:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ paths:
description: Invalid ID supplied
'404':
description: Pet not found
'405':
'422':
description: Validation exception
security:
- petstore_auth:
Expand Down Expand Up @@ -106,8 +106,10 @@ paths:
application/xml:
schema:
$ref: '#/components/schemas/Pet'
'405':
'400':
description: Invalid input
'422':
description: Validation exception
security:
- petstore_auth:
- write:pets
Expand Down Expand Up @@ -248,7 +250,7 @@ paths:
schema:
type: string
responses:
'405':
'400':
description: Invalid input
security:
- petstore_auth:
Expand Down Expand Up @@ -363,8 +365,10 @@ paths:
application/json:
schema:
$ref: '#/components/schemas/Order'
'405':
'400':
description: Invalid input
'422':
description: Validation exception
/store/order/{orderId}:
get:
tags:
Expand Down