1swagger: '2.0' 2info: 3 title: issue-1289 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 /getSomeIds: 17 get: 18 operationId: getSomeIdsOps 19 parameters: 20 - name: getSomeIds 21 in: body 22 required: true 23 schema: 24 type: object 25 properties: 26 someIds: 27 type: array 28 items: 29 type: number 30 responses: 31 '200':