Skip to content

Commit

Permalink
Fixes linting warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbs committed Sep 20, 2024
1 parent 183e738 commit cc9a43c
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion openapi.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
openapi: "3.0.0"
info:
version: 1.0.0
title: Swagger Petstore Foo
title: Swagger Petstore
description: This is a sample server for a pet store.
license:
name: MIT
contact:
name: API Support
url: https://example.com/support
email: [email protected]
servers:
- url: http://petstore.swagger.io/v1
tags:
- name: pets
paths:
/pets:
get:
summary: List all pets
description: Retrieve a list of all the pets in the store.
operationId: listPets
tags:
- pets
Expand Down Expand Up @@ -42,6 +50,7 @@ paths:
$ref: "#/components/schemas/Error"
post:
summary: Create a pet
description: Create a new pet.
operationId: createPets
tags:
- pets
Expand All @@ -57,6 +66,7 @@ paths:
/pets/{petId}:
get:
summary: Info for a specific pet
description: Load the details of the specified pet.
operationId: showPetById
tags:
- pets
Expand Down

0 comments on commit cc9a43c

Please sign in to comment.