{ "swagger": "2.0", "info": { "contact": {} }, "paths": { "/version": { "get": { "description": "get string by ID", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "accounts" ], "summary": "Getting the version of the backend", "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/backend.VersionData" } }, "404": { "description": "Not Found", "schema": { "type": "string" } } } } } }, "definitions": { "backend.VersionData": { "type": "object", "properties": { "changelog": { "type": "string", "example": "account name" }, "history": { "type": "array", "items": { "$ref": "#/definitions/backend.VersionData" } }, "version": { "type": "string", "example": "1.0.0" } } } } }