swagger: '2.0' info: title: issue-1289 version: '1.0' license: name: MIT host: localhost:8081 basePath: /api/v1 schemes: - http consumes: - application/json produces: - application/json paths: /servers/getSomeIds: get: operationId: getSomeIdsOps parameters: - name: getSomeIds in: body required: true schema: type: object properties: someIds: $ref: '#/definitions/someIds' type: array responses: '200': definitions: someIds: type: array items: type: number