github.com/kaisawind/go-swagger@v0.19.0/fixtures/bugs/1397/fixture-1397b.yaml (about)

     1  swagger: '2.0'
     2  info:
     3    title: fixture b 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: path
    15        responses:
    16          200:
    17            description: simple type
    18            schema:
    19              $ref: '#/definitions/ContainerConfig'
    20  definitions:
    21    ContainerConfig:
    22      type: object
    23      enum:
    24        - { "place": "first" }
    25        - { "place": "second" }
    26        - { "place": "third" }
    27      additionalProperties:
    28        type: object