Last active
June 14, 2020 11:32
-
-
Save priyankajayaswal1/f22c57a9771146ae6aa2e32d9bbcaf19 to your computer and use it in GitHub Desktop.
Swagger.json
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
{ | |
"basePath": "/", | |
"consumes": [ | |
"application/json" | |
], | |
"definitions": { | |
"Todo": { | |
"properties": { | |
"id": { | |
"description": "The task unique identifier", | |
"type": "integer" | |
}, | |
"task": { | |
"description": "The task details", | |
"type": "string" | |
} | |
}, | |
"required": [ | |
"task" | |
], | |
"type": "object" | |
} | |
}, | |
"info": { | |
"description": "A simple TodoMVC API", | |
"title": "TodoMVC API", | |
"version": "1.0" | |
}, | |
"paths": { | |
"/todos/": { | |
"get": { | |
"operationId": "list_todos", | |
"parameters": [ | |
{ | |
"description": "An optional fields mask", | |
"format": "mask", | |
"in": "header", | |
"name": "X-Fields", | |
"type": "string" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "Success", | |
"schema": { | |
"items": { | |
"$ref": "#/definitions/Todo" | |
}, | |
"type": "array" | |
} | |
} | |
}, | |
"summary": "List all tasks", | |
"tags": [ | |
"todos" | |
] | |
}, | |
"post": { | |
"operationId": "create_todo", | |
"parameters": [ | |
{ | |
"in": "body", | |
"name": "payload", | |
"required": true, | |
"schema": { | |
"$ref": "#/definitions/Todo" | |
} | |
}, | |
{ | |
"description": "An optional fields mask", | |
"format": "mask", | |
"in": "header", | |
"name": "X-Fields", | |
"type": "string" | |
} | |
], | |
"responses": { | |
"201": { | |
"description": "Success", | |
"schema": { | |
"$ref": "#/definitions/Todo" | |
} | |
} | |
}, | |
"summary": "Create a new task", | |
"tags": [ | |
"todos" | |
] | |
} | |
}, | |
"/todos/{id}": { | |
"delete": { | |
"operationId": "delete_todo", | |
"responses": { | |
"204": { | |
"description": "Todo deleted" | |
}, | |
"404": { | |
"description": "Todo not found" | |
} | |
}, | |
"summary": "Delete a task given its identifier", | |
"tags": [ | |
"todos" | |
] | |
}, | |
"get": { | |
"operationId": "get_todo", | |
"parameters": [ | |
{ | |
"description": "An optional fields mask", | |
"format": "mask", | |
"in": "header", | |
"name": "X-Fields", | |
"type": "string" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "Success", | |
"schema": { | |
"$ref": "#/definitions/Todo" | |
} | |
}, | |
"404": { | |
"description": "Todo not found" | |
} | |
}, | |
"summary": "Fetch a given resource", | |
"tags": [ | |
"todos" | |
] | |
}, | |
"parameters": [ | |
{ | |
"description": "The task identifier", | |
"in": "path", | |
"name": "id", | |
"required": true, | |
"type": "integer" | |
} | |
], | |
"put": { | |
"operationId": "put_todo", | |
"parameters": [ | |
{ | |
"in": "body", | |
"name": "payload", | |
"required": true, | |
"schema": { | |
"$ref": "#/definitions/Todo" | |
} | |
}, | |
{ | |
"description": "An optional fields mask", | |
"format": "mask", | |
"in": "header", | |
"name": "X-Fields", | |
"type": "string" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "Success", | |
"schema": { | |
"$ref": "#/definitions/Todo" | |
} | |
}, | |
"404": { | |
"description": "Todo not found" | |
} | |
}, | |
"summary": "Update a task given its identifier", | |
"tags": [ | |
"todos" | |
] | |
} | |
} | |
}, | |
"schemes": ["https", "http"], | |
"produces": [ | |
"application/json" | |
], | |
"responses": { | |
"MaskError": { | |
"description": "When any error occurs on mask" | |
}, | |
"ParseError": { | |
"description": "When a mask can't be parsed" | |
} | |
}, | |
"swagger": "2.0", | |
"tags": [ | |
{ | |
"description": "Default namespace", | |
"name": "default" | |
}, | |
{ | |
"description": "TODO operations", | |
"name": "todos" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment