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

     1  swagger: '2.0'
     2  info:
     3    title: issue-342
     4    version: 0.0.1
     5    license:
     6      name: MIT
     7  host: localhost:8081
     8  basePath: /api/v1
     9  schemes:
    10    - http
    11  consumes:
    12    - application/json
    13  produces:
    14    - application/json
    15  paths:
    16    /get_main_object:
    17      get:
    18        tags:
    19          - maindata
    20        parameters:
    21          $ref: "#/parameters/sid"  
    22        responses:
    23          '200':
    24  
    25  parameters:
    26    sid:
    27      in: query
    28      required: true
    29      type: integer
    30      format: int64
    31