-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(apidom-ls): fix oas-3.0-petsotre.yaml
- Loading branch information
1 parent
7710ef2
commit 44242ea
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,11 +6,11 @@ info: | |
Swagger at [https://swagger.io](https://swagger.io). In the third iteration of the pet store, we've switched to the design first approach! | ||
You can now help us improve the API whether it's by making changes to the definition itself or to the code. | ||
That way, with time, we can improve the API in general, and expose some of the new features in OAS3. | ||
Some useful links: | ||
- [The Pet Store repository](https://github.com/swagger-api/swagger-petstore) | ||
- [The source API definition for the Pet Store](https://github.com/swagger-api/swagger-petstore/blob/master/src/main/resources/openapi.yaml) | ||
termsOfService: http://swagger.io/terms/ | ||
contact: | ||
email: [email protected] | ||
|
@@ -112,7 +112,7 @@ paths: | |
- petstore_auth: | ||
- write:pets | ||
- read:pets | ||
/pet/findByStatus: | ||
/pet/findByStatus?status=status: | ||
get: | ||
tags: | ||
- pet | ||
|
@@ -152,7 +152,7 @@ paths: | |
- petstore_auth: | ||
- write:pets | ||
- read:pets | ||
/pet/findByTags: | ||
/pet/findByTags?tags=tags: | ||
get: | ||
tags: | ||
- pet | ||
|
@@ -189,7 +189,7 @@ paths: | |
- petstore_auth: | ||
- write:pets | ||
- read:pets | ||
/pet/{petId}: | ||
/pet/{petId}?name=name&status=status: | ||
get: | ||
tags: | ||
- pet | ||
|
@@ -281,7 +281,7 @@ paths: | |
- petstore_auth: | ||
- write:pets | ||
- read:pets | ||
/pet/{petId}/uploadImage: | ||
/pet/{petId}/uploadImage?additionalMetadata=additionalMetadata: | ||
post: | ||
tags: | ||
- pet | ||
|