| swagger: '2.0' | |
| info: | |
| version: "1.0.0" | |
| title: "no-model" | |
| license: | |
| name: "Apache 2.0" | |
| url: "http://www.apache.org/licenses/LICENSE-2.0.html" | |
| basePath: "/" | |
| paths: | |
| /getUser: | |
| get: | |
| parameters: | |
| - in: "query" | |
| name: "id" | |
| type: "string" | |
| responses: | |
| 200: | |
| description: "success" | |
| schema: | |
| $ref: '#/definitions/User' | |
| definitions: | |
| User: | |
| type: object | |
| properties: | |
| id: | |
| type: string | |
| name: | |
| type: string |