...

Text file src/github.com/go-openapi/validate/fixtures/go-swagger/bugs/465/swagger.yml

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

     1swagger: '2.0'
     2info:
     3  version: 1.0.0
     4  title: 'Test'
     5schemes:
     6  - http
     7basePath: /v1/fancyAPI
     8produces:
     9  - application/json
    10consumes:
    11  - application/json
    12paths:
    13  /key/{id}:
    14    delete:
    15      parameters:
    16        - name: id
    17          in: path
    18          type: integer
    19          required: true
    20      responses:
    21        '200':
    22          description: OK

View as plain text