...

Text file src/github.com/go-openapi/validate/fixtures/bugs/43/fixture-43-fail.yaml

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

     1swagger: '2.0'
     2info:
     3  title: Object
     4  version: 0.1.0
     5
     6paths:
     7  "/":
     8    get:
     9      operationId: getBody
    10      parameters:
    11        - name: yet_other_server_id
    12          in: body
    13          schema:
    14            # Invalid array definition
    15            type: array
    16            properties:
    17              other:
    18                type: string
    19      responses:
    20        '200':
    21          description: ko
    22            # Invalid array definition
    23          schema:
    24            type: array
    25            properties:
    26              another:
    27                type: string

View as plain text