...

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

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

     1swagger: '2.0'
     2info:
     3  version: 1.0.0
     4  title: 'array-body-api'
     5paths:
     6  /echo:
     7    post:
     8      operationId: "postEcho"
     9      summary: Post an object
    10      parameters:
    11        - name: body
    12          in: body
    13          description: this argument is a string array
    14          schema:
    15            type: array
    16            items:
    17              type: string
    18      responses:
    19        '200':
    20          description: All is good

View as plain text