...

Text file src/github.com/go-openapi/validate/fixtures/validation/fixture-1050.yaml

Documentation: github.com/go-openapi/validate/fixtures/validation

     1swagger: '2.0'
     2info:
     3  description: >-
     4    Minimal swagger file to demonstrate a dot-in-th-path problem
     5  version: 0.0.1
     6  title: test
     7tags:
     8  - name: test
     9    description: test the go-swagger generator bug
    10paths:
    11  /{fileName}.{fileExt}:
    12    get:
    13      tags:
    14        - test
    15      operationId: test
    16      parameters:
    17        - name: fileName
    18          in: path
    19          required: true
    20          type: string
    21        - name: fileExt
    22          in: path
    23          required: true
    24          type: string
    25      responses:
    26        '204':
    27          description: successful operation
    28        '500':
    29          description: Operation error

View as plain text