{ "swagger": "2.0", "consumes": [ "application/json" ], "produces": [ "application/json" ], "paths": { "/api/v1/health/status": { "get": { "operationId": "HealthService_Status", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/healthResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/runtimeError" } } } } } }, "definitions": { "healthResponse": { "type": "object", "properties": { "success": { "type": "boolean" }, "code": { "type": "string" }, "desc": { "type": "string" } } }, "protobufAny": { "type": "object", "properties": { "type_url": { "type": "string" }, "value": { "type": "string", "format": "byte" } } }, "runtimeError": { "type": "object", "properties": { "error": { "type": "string" }, "code": { "type": "integer", "format": "int32" }, "message": { "type": "string" }, "details": { "type": "array", "items": { "$ref": "#/definitions/protobufAny" } } } } } }