...

Text file src/github.com/go-openapi/validate/fixtures/go-swagger/bugs/342/fixture-342-3.yaml

Documentation: github.com/go-openapi/validate/fixtures/go-swagger/bugs/342

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

View as plain text