{ "swagger": "2.0", "info": { "title": "Linux Do CDK", "contact": {} }, "paths": { "/api/v1/health": { "get": { "produces": [ "application/json" ], "tags": [ "health" ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/health.HealthResponse" } } } } } }, "definitions": { "health.HealthResponse": { "type": "object", "properties": { "data": {}, "error_code": { "type": "integer" }, "error_msg": { "type": "string" } } } } }