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

Add OpenAPI / Swagger as a skill, closes #18 #17

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -391,6 +391,7 @@
* [TCP](#tcp)
* [REST API](#rest-api)
* [CRUD](#crud)
* [OpenAPI](#openapi)
* [Express](#express)
* [GraphQL](#graphql)
* [GNU/Linux](#gnulinux)
Expand Down Expand Up @@ -3644,6 +3645,16 @@ Learn about the CRUD operations.
* [ ] [<img style="margin-bottom: 0;" src="https://plus.google.com/_/favicon?domain_url=https%3A%2F%2Fwww.youtube.com" alt="Logo" /> Youtube - Introduction to CRUD Operations](https://www.youtube.com/watch?v=Lyi8SoVdkhM)
* [ ] [<img style="margin-bottom: 0;" src="https://plus.google.com/_/favicon?domain_url=https%3A%2F%2Ftyk.io" alt="Logo" /> REST was NEVER about CRUD](https://tyk.io/rest-never-crud/)

#### OpenAPI

Learn about the OpenAPI specification for describing RESTful APIs

* [ ] [<img style="margin-bottom: 0;" src="https://plus.google.com/_/favicon?domain_url=https%3A%2F%2Fswagger.io" alt="Logo" /> OpenAPI specification](https://swagger.io/specification/)
* [ ] [<img style="margin-bottom: 0;" src="https://plus.google.com/_/favicon?domain_url=https%3A%2F%2Fmedium.com" alt="Logo" /> Tutorial of OpenAPI Specification](https://medium.com/@amirm.lavasani/restful-apis-tutorial-of-openapi-specification-eeada0e3901d)
* [ ] [<img style="margin-bottom: 0;" src="https://plus.google.com/_/favicon?domain_url=https%3A%2F%2Fmedium.com" alt="Logo" /> Improving the developer experience with OpenAPI Specification](https://medium.com/adyen/improving-the-developer-experience-with-openapi-specification-f90fbf8077cf)
* [ ] [<img style="margin-bottom: 0;" src="https://plus.google.com/_/favicon?domain_url=https%3A%2F%2Fapp.swaggerhub.com" alt="Logo" /> SwaggerHub - Public list of available OpenAPI definitions](https://app.swaggerhub.com)
* [ ] [<img style="margin-bottom: 0;" src="https://plus.google.com/_/favicon?domain_url=https%3A%2F%2Fopenapi.tools" alt="Logo" /> openapi.tools - List of available OpenAPI tools](https://openapi.tools)

### Express

Learn about the Node.js web application framework called Express.
Expand Down
18 changes: 18 additions & 0 deletions assets/databases-and-servers/servers/openapi.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions blueprint.md
Original file line number Diff line number Diff line change
Expand Up @@ -3216,6 +3216,16 @@ Learn about the CRUD operations.
* [ ] [<img style="margin-bottom: 0;" src="https://plus.google.com/_/favicon?domain_url=https%3A%2F%2Fwww.youtube.com" alt="Logo" /> Youtube - Introduction to CRUD Operations](https://www.youtube.com/watch?v=Lyi8SoVdkhM)
* [ ] [<img style="margin-bottom: 0;" src="https://plus.google.com/_/favicon?domain_url=https%3A%2F%2Ftyk.io" alt="Logo" /> REST was NEVER about CRUD](https://tyk.io/rest-never-crud/)

#### OpenAPI

Learn about the OpenAPI specification for describing RESTful APIs

* [ ] [<img style="margin-bottom: 0;" src="https://plus.google.com/_/favicon?domain_url=https%3A%2F%2Fswagger.io" alt="Logo" /> OpenAPI specification](https://swagger.io/specification/)
* [ ] [<img style="margin-bottom: 0;" src="https://plus.google.com/_/favicon?domain_url=https%3A%2F%2Fmedium.com" alt="Logo" /> Tutorial of OpenAPI Specification](https://medium.com/@amirm.lavasani/restful-apis-tutorial-of-openapi-specification-eeada0e3901d)
* [ ] [<img style="margin-bottom: 0;" src="https://plus.google.com/_/favicon?domain_url=https%3A%2F%2Fmedium.com" alt="Logo" /> Improving the developer experience with OpenAPI Specification](https://medium.com/adyen/improving-the-developer-experience-with-openapi-specification-f90fbf8077cf)
* [ ] [<img style="margin-bottom: 0;" src="https://plus.google.com/_/favicon?domain_url=https%3A%2F%2Fapp.swaggerhub.com" alt="Logo" /> SwaggerHub - Public list of available OpenAPI definitions](https://app.swaggerhub.com)
* [ ] [<img style="margin-bottom: 0;" src="https://plus.google.com/_/favicon?domain_url=https%3A%2F%2Fopenapi.tools" alt="Logo" /> openapi.tools - List of available OpenAPI tools](https://openapi.tools)

### Express

Learn about the Node.js web application framework called Express.
Expand Down
13 changes: 13 additions & 0 deletions src/data/databases.js
Original file line number Diff line number Diff line change
Expand Up @@ -456,6 +456,19 @@ export const databasesCollection = {
]
},
},
{
name: "OpenAPI",
description: {
text: "Learn about the OpenAPI specification for describing RESTful APIs",
links: [
["OpenAPI specification", "https://swagger.io/specification/"],
["Tutorial of OpenAPI Specification", "https://medium.com/@amirm.lavasani/restful-apis-tutorial-of-openapi-specification-eeada0e3901d"],
["Improving the developer experience with OpenAPI Specification", "https://medium.com/adyen/improving-the-developer-experience-with-openapi-specification-f90fbf8077cf"],
["SwaggerHub - Public list of available OpenAPI definitions", "https://app.swaggerhub.com"],
["openapi.tools - List of available OpenAPI tools", "https://openapi.tools"],
]
},
},
]
},
{
Expand Down