Last active
August 31, 2024 21:41
-
-
Save Daniyal-Javani/5b91ed8c492d62a528ebb7d61ceeb419 to your computer and use it in GitHub Desktop.
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
{ | |
"openapi": "3.0.0", | |
"info": { | |
"version": "1.0.0", | |
"title": "Swagger Faqstore", | |
"description": "A sample API that uses a faqstore as an example to demonstrate features in the OpenAPI 3.0 specification", | |
"termsOfService": "http://swagger.io/terms/", | |
"contact": { | |
"name": "Swagger API Team", | |
"email": "[email protected]", | |
"url": "http://swagger.io" | |
}, | |
"license": { | |
"name": "Apache 2.0", | |
"url": "https://www.apache.org/licenses/LICENSE-2.0.html" | |
} | |
}, | |
"servers": [ | |
{ | |
"url": "http://faqstore.swagger.io/api" | |
} | |
], | |
"paths": { | |
"/faqs": { | |
"get": { | |
"tags": [ | |
"FAQ" | |
], | |
"summary": "Returns all faqs from the system that the user has access to", | |
"description": "Returns all faqs from the system that the user has access to", | |
"operationId": "findFaqs", | |
"responses": { | |
"200": { | |
"description": "faq response", | |
"content": { | |
"application/json": { | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/components/schemas/Faq" | |
} | |
} | |
} | |
} | |
}, | |
"default": { | |
"description": "unexpected error", | |
"content": { | |
"application/json": { | |
"schema": { | |
"$ref": "#/components/schemas/Error" | |
} | |
} | |
} | |
} | |
} | |
}, | |
"post": { | |
"tags": [ | |
"FAQ" | |
], | |
"summary": "Creates a new faq in the store. Duplicates are not allowed", | |
"description": "Creates a new faq in the store. Duplicates are not allowed", | |
"operationId": "addFaq", | |
"requestBody": { | |
"description": "Faq to add to the store", | |
"required": true, | |
"content": { | |
"application/json": { | |
"schema": { | |
"$ref": "#/components/schemas/NewFaq" | |
} | |
} | |
} | |
}, | |
"responses": { | |
"200": { | |
"description": "faq response", | |
"content": { | |
"application/json": { | |
"schema": { | |
"$ref": "#/components/schemas/Faq" | |
} | |
} | |
} | |
}, | |
"default": { | |
"description": "unexpected error", | |
"content": { | |
"application/json": { | |
"schema": { | |
"$ref": "#/components/schemas/Error" | |
} | |
} | |
} | |
} | |
} | |
} | |
}, | |
"/faqs/{id}": { | |
"get": { | |
"tags": [ | |
"FAQ" | |
], | |
"summary": "Returns a user based on a single ID, if the user does not have access to the faq", | |
"description": "Returns a user based on a single ID, if the user does not have access to the faq", | |
"operationId": "find faq by id", | |
"parameters": [ | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "ID of faq to fetch", | |
"required": true, | |
"schema": { | |
"type": "integer", | |
"format": "int64" | |
} | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "faq response", | |
"content": { | |
"application/json": { | |
"schema": { | |
"$ref": "#/components/schemas/Faq" | |
} | |
} | |
} | |
}, | |
"default": { | |
"description": "unexpected error", | |
"content": { | |
"application/json": { | |
"schema": { | |
"$ref": "#/components/schemas/Error" | |
} | |
} | |
} | |
} | |
} | |
}, | |
"delete": { | |
"tags": [ | |
"FAQ" | |
], | |
"summary": "deletes a single faq based on the ID supplied", | |
"description": "deletes a single faq based on the ID supplied", | |
"operationId": "deleteFaq", | |
"parameters": [ | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "ID of faq to delete", | |
"required": true, | |
"schema": { | |
"type": "integer", | |
"format": "int64" | |
} | |
} | |
], | |
"responses": { | |
"204": { | |
"description": "faq deleted" | |
}, | |
"default": { | |
"description": "unexpected error", | |
"content": { | |
"application/json": { | |
"schema": { | |
"$ref": "#/components/schemas/Error" | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
}, | |
"components": { | |
"schemas": { | |
"Faq": { | |
"allOf": [ | |
{ | |
"$ref": "#/components/schemas/NewFaq" | |
}, | |
{ | |
"type": "object", | |
"required": [ | |
"id" | |
], | |
"properties": { | |
"id": { | |
"type": "integer", | |
"format": "int64" | |
} | |
} | |
} | |
] | |
}, | |
"NewFaq": { | |
"type": "object", | |
"required": [ | |
"name" | |
], | |
"properties": { | |
"name": { | |
"type": "string" | |
}, | |
"tag": { | |
"type": "string" | |
} | |
} | |
}, | |
"Error": { | |
"type": "object", | |
"required": [ | |
"message" | |
], | |
"properties": { | |
"message": { | |
"type": "string" | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment