1--- 2swagger: '2.0' 3info: 4 version: 0.0.0 5 title: Breaking API as described by emsa23 6paths: 7 /: 8 get: 9 operationId: getFoo 10 responses: 11 200: 12 $ref: '#/responses/200' 13responses: 14 '200': 15 description: ok 16 headers: 17 status: 18 type: array 19 items: 20 type: string 21 enum: 22 - NEW 23 - PUBLISHED 24 - OPEN 25 - FINISHED