1swagger: '2.0' 2info: 3 title: issue-1231 4 version: '1.0' 5 license: 6 name: MIT 7host: localhost:8081 8basePath: /api/v1 9schemes: 10 - http 11consumes: 12 - application/json 13produces: 14 - application/json 15paths: 16 /servers/getSomeIds: 17 get: 18 operationId: getSomeIdsOps 19 parameters: 20 - name: getSomeIds 21 in: body 22 schema: 23 type: object 24 properties: 25 id: 26 type: number 27 example: ABC 28 responses: 29 '200':