File: paths.yaml

package info (click to toggle)
libjson-validator-perl 5.15%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,160 kB
  • sloc: perl: 3,024; makefile: 13
file content (25 lines) | stat: -rw-r--r-- 354 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
user:
  get:
    parameters:
      - $ref: "#/parameters/id_ref"
    responses:
      200:
        description: A user
        schema:
          $ref: "#/x-def/User"

parameters:
  id_ref:
    $ref: "#/parameters/id"
  id:
    in: path
    name: id
    required: true
    type: string

x-def:
  User:
    properties:
      name:
        type: string