SmartBear / readyapi-swagger-plugin

Ready! API Plugin for importing Swagger definitions as REST Services
36 stars 27 forks source link

SOAP UI generated Swagger leaves out some important elements #25

Open tnscorcoran opened 9 years ago

tnscorcoran commented 9 years ago

See below generated Swagger. Leaves out host, path and response data. Contact me directly on tom@3scale.net and I'll share the SOAP UI project if that helps.

{ "swagger": "2.0", "info": { "version": "1.0", "title": "https://api.somehost.com" }, "basePath": "", "paths": { "": { "get": { "operationId": "Company", "parameters": [ { "name": "id", "in": "query", "required": true, "type": "string" }, { "name": "param2", "in": "query", "required": true, "type": "string" }, { "name": "param3", "in": "query", "required": true, "type": "string" } ], "responses": { "200": {} } } } } }