Created
September 10, 2021 18:09
-
-
Save giuliana-bezerra/72340adfdb3f5902d4c3d0bc1cc3614a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
openapi: 3.0.0 | |
servers: | |
- url: 'https://petstore3.swagger.io/api/v3' | |
info: | |
description: | |
'This is a sample server Petstore server. You can find out more about | |
Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For | |
this sample, you can use the api key `special-key` to test the authorization filters.' | |
version: 1.0.0 | |
title: Swagger Petstore New | |
termsOfService: http://swagger.io/terms/ | |
contact: | |
email: [email protected] | |
license: | |
name: Apache 2.0 | |
url: http://www.apache.org/licenses/LICENSE-2.0.html | |
tags: | |
- name: pet | |
description: Everything about your Pets | |
externalDocs: | |
description: Find out more | |
url: http://swagger.io | |
- name: store | |
description: Access to Petstore orders | |
- name: user | |
description: Operations about user | |
externalDocs: | |
description: Find out more about our store | |
url: http://swagger.io | |
paths: | |
'/pet': | |
post: | |
tags: | |
- pet | |
summary: Add a new pet to the store | |
description: Add a new pet to the store | |
operationId: addPet | |
requestBody: | |
description: Create a new pet in the store | |
content: | |
application/json: | |
schema: | |
$ref: '#/components/schemas/Pet' | |
required: true | |
responses: | |
'200': | |
description: Successful operation | |
content: | |
application/json: | |
schema: | |
$ref: '#/components/schemas/Pet' | |
'405': | |
description: Invalid input | |
'/pet/{petId}': | |
get: | |
tags: | |
- pet | |
summary: Find pet by ID | |
description: Returns a single pet | |
operationId: getPetById | |
parameters: | |
- name: petId | |
in: path | |
description: ID of pet to return | |
required: true | |
schema: | |
type: integer | |
format: int64 | |
responses: | |
'200': | |
description: successful operation | |
content: | |
application/xml: | |
schema: | |
'$ref': '#/components/schemas/Pet' | |
application/json: | |
schema: | |
'$ref': '#/components/schemas/Pet' | |
'400': | |
description: Invalid ID supplied | |
'404': | |
description: Pet not found | |
'405': | |
description: Validation error | |
components: | |
schemas: | |
Pet: | |
required: | |
- name | |
- photoUrls | |
type: object | |
properties: | |
id: | |
type: integer | |
format: int64 | |
example: 10 | |
name: | |
type: string | |
example: doggie | |
photoUrls: | |
type: array | |
xml: | |
wrapped: true | |
items: | |
type: string | |
xml: | |
name: photoUrl | |
status: | |
type: string | |
description: pet status in the store | |
enum: | |
- available | |
- pending | |
- sold |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment