{ "swagger": "2.0", "info": { "description": "This is a sample server.", "title": "Swagger Example API", "termsOfService": "http://swagger.io/terms/", "contact": { "name": "API Support", "url": "http://www.swagger.io/support", "email": "support@swagger.io" }, "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.html" }, "version": "2.0" }, "basePath": "/v2", "paths": { "/books": { "get": { "description": "get string by ID", "consumes": [ "application/json" ], "produces": [ "application/json" ], "summary": "Get a list of books in the the store", "responses": { "200": { "description": "ok", "schema": { "type": "array", "items": { "$ref": "#/definitions/v2.Book" } } } } } } }, "definitions": { "v2.Book": { "type": "object", "properties": { "author": { "type": "string" }, "id": { "type": "integer" }, "title": { "type": "string" }, "year": { "type": "integer" } } } } }