Last active
November 8, 2018 15:21
-
-
Save unhurried/65be039436581b6a6124a5c53b890c43 to your computer and use it in GitHub Desktop.
Swagger 3.0 Example
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.1 | |
info: | |
version: 1.0.0 | |
title: API Specification Example | |
paths: | |
/articles: | |
post: | |
summary: Create an article. | |
operationId: createArticle | |
tags: | |
- Article API | |
requestBody: | |
content: | |
application/json: | |
schema: | |
$ref: '#/components/schemas/Article' | |
responses: | |
'201': | |
description: Success | |
content: | |
application/json: | |
schema: | |
$ref: '#/components/schemas/Article' | |
'400': | |
$ref: '#/components/responses/IllegalInput' | |
get: | |
summary: Get a list of articles | |
operationId: listArticles | |
tags: | |
- Article API | |
parameters: | |
- $ref: '#/components/parameters/Limit' | |
- $ref: '#/components/parameters/Offset' | |
responses: | |
'200': | |
description: Success | |
content: | |
application/json: | |
schema: | |
$ref: '#/components/schemas/ArticleList' | |
'/articles/{id}': | |
get: | |
summary: Get an article. | |
operationId: getArticle | |
tags: | |
- Article API | |
parameters: | |
- $ref: '#/components/parameters/Id' | |
responses: | |
'200': | |
description: Success | |
content: | |
application/json: | |
schema: | |
$ref: '#/components/schemas/Article' | |
'404': | |
$ref: '#/components/responses/NotFound' | |
put: | |
summary: Update | |
operationId: updateArticle | |
tags: | |
- Article API | |
parameters: | |
- $ref: '#/components/parameters/Id' | |
requestBody: | |
content: | |
application/json: | |
schema: | |
$ref: '#/components/schemas/Article' | |
responses: | |
'200': | |
description: Success | |
content: | |
application/json: | |
schema: | |
$ref: '#/components/schemas/Article' | |
'404': | |
$ref: '#/components/responses/NotFound' | |
delete: | |
summary: Delete an article. | |
operationId: deleteArticle | |
tags: | |
- Article API | |
parameters: | |
- $ref: '#/components/parameters/Id' | |
responses: | |
'204': | |
description: Success | |
'404': | |
$ref: '#/components/responses/NotFound' | |
components: | |
schemas: | |
Id: | |
description: Resource ID | |
type: integer | |
format: int64 | |
readOnly: true | |
example: 1 | |
ArticleForList: | |
properties: | |
id: | |
$ref: '#/components/schemas/Id' | |
category: | |
description: Category of an article | |
type: string | |
example: sports | |
Article: | |
allOf: | |
- $ref: '#/components/schemas/ArticleForList' | |
required: | |
- text | |
properties: | |
text: | |
description: Content of an article | |
type: string | |
maxLength: 1024 | |
example: |- | |
# Title | |
## Head Line | |
Body | |
ArticleList: | |
type: array | |
items: | |
$ref: '#/components/schemas/ArticleForList' | |
Error: | |
description: | | |
<table> | |
<tr> | |
<th>Code</th> | |
<th>Description</th> | |
</tr> | |
<tr> | |
<td>illegal_input</td> | |
<td>The input is invalid.</td> | |
</tr> | |
<tr> | |
<td>not_found</td> | |
<td>The resource is not found.</td> | |
</tr> | |
</table> | |
required: | |
- code | |
- message | |
properties: | |
code: | |
type: string | |
example: illegal_input | |
parameters: | |
Id: | |
name: id | |
in: path | |
description: Resource ID | |
required: true | |
schema: | |
$ref: '#/components/schemas/Id' | |
Limit: | |
name: limit | |
in: query | |
description: limit | |
required: false | |
schema: | |
type: integer | |
minimum: 1 | |
maximum: 100 | |
default: 10 | |
example: 10 | |
Offset: | |
name: offset | |
in: query | |
description: offset | |
required: false | |
schema: | |
type: integer | |
minimum: 0 | |
default: 0 | |
example: 10 | |
responses: | |
NotFound: | |
description: The resource is not found. | |
content: | |
application/json: | |
schema: | |
$ref: '#/components/schemas/Error' | |
IllegalInput: | |
description: The input is invalid. | |
content: | |
application/json: | |
schema: | |
$ref: '#/components/schemas/Error' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment