-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswagger.json
102 lines (102 loc) · 2.07 KB
/
swagger.json
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"swagger": "2.0",
"info": {
"title": "toddler",
"description": "toddler",
"version": "0.0.1",
"contact": {
"email": "[email protected]"
}
},
"host": "127.0.0.1",
"basePath": "/v1",
"tags": [
{
"name": "Demo",
"description": "Demo API",
"externalDocs": {
"description": "",
"url": "http://github.com/xgxw/toddler-go"
}
}
],
"schemes": [
"https"
],
"paths": {
"/check": {
"get": {
"tags": [
"Demo"
],
"summary": "Check something",
"description": "",
"produces": [
"application/json"
],
"parameters": [
{
"name": "id",
"in": "query",
"description": "",
"required": true,
"type": "integer"
},
{
"name": "name",
"in": "query",
"description": "",
"required": true,
"type": "string"
},
{
"name": "amount",
"in": "query",
"description": "",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"description": "successful operation",
"schema": {
"$ref": "#/definitions/CheckResponse"
}
},
"400": {
"description": "Invalid input"
}
}
}
}
},
"definitions": {
"CheckResponse": {
"type": "object",
"properties": {
"ok": {
"description": "",
"type": "boolean",
"example": "true"
},
"limit": {
"description": "",
"type": "integer",
"format": "int",
"example": "1000"
},
"msg": {
"description": "解释",
"type": "string",
"format": "string",
"example": ""
}
}
}
},
"externalDocs": {
"description": "详情",
"url": "https://github.com/xgxw/"
}
}