{ "swagger": "2.0", "info": { "title": "beego Test API", "description": "beego has a very cool tools to autogenerate documents for your API\n", "version": "1.0.0", "termsOfService": "http://beego.me/", "contact": { "email": "astaxie@gmail.com" }, "license": { "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.html" } }, "basePath": "/oc/", "paths": { "/peer/": { "get": { "tags": [ "peer" ], "description": "find all peer\n\u003cbr\u003e", "operationId": "PeerController.GetAll", "responses": { "200": { "description": "{peer} models.peer" } } } }, "/peer/search/{search}": { "get": { "tags": [ "peer" ], "description": "search workspace\n\u003cbr\u003e", "operationId": "PeerController.Search", "parameters": [ { "in": "path", "name": "search", "description": "the word search you want to get", "required": true, "type": "string" } ], "responses": { "200": { "description": "{workspace} models.workspace" } } } }, "/peer/{id}": { "get": { "tags": [ "peer" ], "description": "find peer by peerid\n\u003cbr\u003e", "operationId": "PeerController.Get", "parameters": [ { "in": "path", "name": "id", "description": "the peer id you want to get", "required": true, "type": "string" } ], "responses": { "200": { "description": "{peer} models.peer" } } }, "put": { "tags": [ "peer" ], "description": "create peers\n\u003cbr\u003e", "operationId": "PeerController.Update", "parameters": [ { "in": "path", "name": "id", "description": "the peer id you want to get", "required": true, "type": "string" }, { "in": "body", "name": "body", "description": "The peer content", "required": true, "schema": { "$ref": "#/definitions/models.peer" } } ], "responses": { "200": { "description": "", "schema": { "$ref": "#/definitions/models.peer" } } } } }, "/status/": { "post": { "tags": [ "status" ], "description": "get peer status if it's alive\n\u003cbr\u003e", "operationId": "StatusController.Status", "parameters": [ { "in": "body", "name": "body", "description": "of", "schema": { "$ref": "#/definitions/list" } } ], "responses": { "200": { "description": "{status} models.status" } } } }, "/version/": { "get": { "tags": [ "version" ], "description": "get version\n\u003cbr\u003e", "operationId": "VersionController.GetAll", "responses": { "200": { "description": "" } } } } }, "definitions": { "list": { "title": "list", "type": "object" }, "models.peer": { "title": "peer", "type": "object" } }, "tags": [ { "name": "status", "description": "Operations about workflow\n" }, { "name": "peer", "description": "Operations about workflow\n" }, { "name": "version", "description": "VersionController operations for Version\n" } ] }