File: parameters.yml

package info (click to toggle)
golang-github-go-openapi-spec 1%3A0.21.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie, trixie-proposed-updates
  • size: 3,748 kB
  • sloc: makefile: 5
file content (24 lines) | stat: -rw-r--r-- 372 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
parameters:
  idParam:
    name: id
    in: path
    type: integer
    format: int32
  limitParam:
    name: limit
    in: query
    type: integer
    format: int32
    required: false
  bodyExt1:
    name: bodyExt1
    in: body
    schema:
      type: object

parameters2:
  bodyExt2:
    name: bodyExt2
    in: body
    schema:
      $ref: 'nestedParams.yml#/bodyParam'