1--- 2swagger: '2.0' 3info: 4 title: cannot expand 5schemes: 6 - http 7basePath: /api 8consumes: 9 - application/json 10produces: 11 - application/json 12parameters: 13 someWhere: 14 name: someWhere 15 in: body 16 required: true 17 schema: 18 type: integer 19paths: 20 /common: 21 get: 22 operationId: commonGet 23 summary: here to test path collisons 24 responses: 25 '200': 26 description: OK 27 schema: 28 $ref: "nowhere.yml#/definitions/foo"