{ "swagger": "2.0", "info": { "contact": {} }, "paths": { "/service/health": { "get": { "description": "Used internally for checking service health", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "Service" ], "summary": "Get health status", "responses": { "200": { "description": "desc", "schema": { "$ref": "#/definitions/controllers.HealthStatus" } } } } } }, "definitions": { "controllers.HealthStatus": { "type": "object", "properties": { "healthy": { "type": "boolean" } } } } }