{ "swagger": "2.0", "info": { "title": "main.proto", "version": "version not set" }, "consumes": [ "application/json" ], "produces": [ "application/json" ], "paths": { "/ping": { "get": { "operationId": "EveningDetective_Ping", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/evening_detectivePingRsp" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/runtimeError" } } }, "tags": [ "EveningDetective" ] } } }, "definitions": { "evening_detectivePingRsp": { "type": "object" }, "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" } } } } } }