File: allOf.yml

package info (click to toggle)
golang-github-go-openapi-analysis 0.0~git20160815.0.b44dc87-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 132 kB
  • ctags: 50
  • sloc: makefile: 3
file content (43 lines) | stat: -rw-r--r-- 750 bytes parent folder | download | duplicates (6)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
---
swagger: "2.0"
info:
  version: "0.1.0"
  title: allOf analysis
paths:
  "/some/where/{id}":
    parameters:
      - name: id
        in: path
        type: integer
        format: int32
      - name: bodyId
        in: body
        schema:
          type: object
    get:
      parameters:
      - name: limit
        in: query
        type: integer
        format: int32
        required: false
      - name: body
        in: body
        schema:
          type: object
      responses:
        default:
          schema:
            type: object
        200:
          schema:
            type: object
definitions:
  tag:
    type: object
    properties:
      id:
        type: integer
        format: int64
      value:
        type: string