...

Text file src/github.com/go-openapi/validate/fixtures/validation/invalid-referenced.yml

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

     1---
     2swagger: "2.0"
     3info:
     4  version: "0.1.0"
     5  title: referenced validation invalid
     6paths:
     7  /:
     8    get:
     9      responses:
    10        default:
    11          description: the record
    12
    13parameters:
    14  rateLimit:
    15    name: X-Rate-Limit
    16    in: header
    17    type: integer
    18    format: int32
    19
    20responses:
    21  notFound:
    22    description: Not found
    23
    24definitions:
    25  record:
    26    type: object
    27    properties:
    28      createdAt:
    29        type: string
    30        format: date-time
    31

View as plain text