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

updatePetWithForm using patch #51

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 13 additions & 11 deletions src/main/resources/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ paths:
- petstore_auth:
- 'write:pets'
- 'read:pets'
post:
patch:
tags:
- pet
summary: Updates a pet in the store with form data
Expand All @@ -235,16 +235,18 @@ paths:
schema:
type: integer
format: int64
- name: name
in: query
description: Name of pet that needs to be updated
schema:
type: string
- name: status
in: query
description: Status of pet that needs to be updated
schema:
type: string
requestBody:
content:
application/x-www-form-urlencoded:
schema:
type: object
properties:
name:
type: string
description: Name of pet that needs to be updated
status:
type: string
description: Status of pet that needs to be updated
responses:
'405':
description: Invalid input
Expand Down