File: put.yml

package info (click to toggle)
python-flasgger 0.9.7.2~dev2%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 14,684 kB
  • sloc: javascript: 6,384; python: 4,379; makefile: 8; sh: 1
file content (26 lines) | stat: -rw-r--r-- 423 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
25
26
Update single item
---
tags:
  - MethodView
parameters:
  - name: id
    type: integer
    in: path
    required: True
    minimum: 1
  - name: Item
    in: body
    schema:
      type: object
      required:
        - name
      properties:
        name:
          type: string
          maxLength: 31
          description: global unique
responses:
  200:
    description: OK
    schema:
      $ref: '#/definitions/Item'