...

Text file src/github.com/go-openapi/analysis/fixtures/allOf.yml

Documentation: github.com/go-openapi/analysis/fixtures

     1---
     2swagger: "2.0"
     3info:
     4  version: "0.1.0"
     5  title: allOf analysis
     6paths:
     7  "/some/where/{id}":
     8    parameters:
     9      - name: id
    10        in: path
    11        type: integer
    12        format: int32
    13      - name: bodyId
    14        in: body
    15        schema:
    16          type: object
    17    get:
    18      parameters:
    19      - name: limit
    20        in: query
    21        type: integer
    22        format: int32
    23        required: false
    24      - name: body
    25        in: body
    26        schema:
    27          type: object
    28      responses:
    29        default:
    30          schema:
    31            type: object
    32        200:
    33          schema:
    34            type: object
    35definitions:
    36  tag:
    37    type: object
    38    properties:
    39      id:
    40        type: integer
    41        format: int64
    42      value:
    43        type: string

View as plain text