github.com/thetreep/go-swagger@v0.0.0-20240223100711-35af64f14f01/fixtures/bugs/1397/fixture-1397a.yaml (about) 1 swagger: '2.0' 2 info: 3 title: fixture a for issue#1397 4 version: '1.0.0' 5 host: localhost 6 basePath: / 7 produces: 8 - application/json 9 schemes: 10 - http 11 paths: 12 /path: 13 get: 14 operationId: path1 15 responses: 16 200: 17 description: simple type 18 schema: 19 $ref: '#/definitions/ContainerConfig' 20 definitions: 21 ContainerConfig: 22 type: object 23 additionalProperties: 24 type: object 25 required: 26 - id 27 - value 28 properties: 29 id: 30 type: integer 31 format: int64 32 minimum: 1 33 maximum: 10