This repository has been archived by the owner on Jan 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswagger.json
100 lines (100 loc) · 1.89 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
{
"swagger": "2.0",
"info": {
"description": "iguagile management rest api",
"version": "1.0.0",
"title": "iguagile-api"
},
"basePath": "/v1/api",
"tags": [
{
"name": "Room"
}
],
"schemes": [
"https"
],
"paths": {
"/create": {
"post": {
"tags": [
"Room"
],
"summary": "create",
"description": "create new room",
"operationId": "name",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"in": "body",
"name": "body",
"description": "",
"required": true,
"schema": {
"$ref": "#/definitions/Room"
}
}
],
"responses": {
"200": {
"description": "Success create room",
"schema": {
"$ref": "#/definitions/ApiResponse"
}
},
"405": {
"description": "Invalid input"
}
}
}
}
},
"definitions": {
"Room": {
"type": "object",
"required": [
"name"
],
"properties": {
"password": {
"type": "string"
},
"version": {
"type": "string"
},
"max_user": {
"type": "number",
"default": 70,
"maximum": 10,
"minimum": 1
}
}
},
"ApiResponse": {
"type": "object",
"properties": {
"status": {
"type": "string",
"enum": [
"success",
"failed"
],
"example": "success"
},
"message": {
"type": "string",
"example": "created room"
},
"room_id": {
"type": "integer",
"example": 1
}
}
}
}
}