github.com/kaisawind/go-swagger@v0.19.0/fixtures/bugs/846/swagger.yml (about)

     1  ---
     2  swagger: '2.0'
     3  info:
     4    version: 0.0.0
     5    title: Test846 API
     6    description: a simple API to test issue 846
     7  paths:
     8    /:
     9      get:
    10        operationId: getFoo
    11        responses:
    12          200:
    13            description: OK
    14            schema:
    15              type: object
    16              properties:
    17                Foo:
    18                  type: integer
    19                  format: int64
    20          404:
    21            description: NotFound
    22            schema:
    23              type: object
    24              properties:
    25                Message:
    26                  type: string
    27          500:
    28            description: Error
    29            schema:
    30              type: object
    31              properties:
    32                Message:
    33                  type: string