-
Notifications
You must be signed in to change notification settings - Fork 0
/
apispec.json
51 lines (51 loc) · 1.81 KB
/
apispec.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
{
"openapi": "3.0.3",
"info": {
"title": "TPQ Imam Syafi'i Banjarmasin",
"description": "TPQ Imam Syafi'i Banjarmasin",
"version": "1.0.0"
},
"servers": [
{
"url": "https://tpqmis.com/api"
}
],
"paths": {
"/login": {
"get": {
"description": "For Login",
"responses": {
"200": {
"description": "Success login",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"code": {
"type": "number"
},
"status": {
"type": "string"
},
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"username": {
"type": "string"
}
}
}
}
}
}
}
}
}
}
}
}
}
}