...
1swagger: '2.0'
2
3info:
4 version: "1.0.0"
5 title: Private to-do list
6 description: |
7 A very simple api description that makes a json only API to submit to do's.
8
9produces:
10 - application/json
11
12consumes:
13 - application/json
14
15paths:
16 /foo:
17 get:
18 parameters:
19 - name: "groups[]"
20 in: query
21 type: array
22 collectionFormat: multi
23 items:
24 type: string
25
26definitions:
27 genericResource:
28 description: generic resource
29 properties:
30 meta:
31 type: string
32 required:
33 - meta
34 additionalProperties:
35 type: object
View as plain text