-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenapi.json
42 lines (42 loc) · 1013 Bytes
/
openapi.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
{
"basePath": "/api",
"paths": {"/login": {"post": {
"description": "Login",
"operationId": "login",
"responses": {"200": {"description": "User information"}},
"parameters": [
{
"name": "login",
"description": "Login",
"type": "string",
"required": true
},
{
"name": "password",
"description": "Password",
"type": "string",
"required": true
}
]
}}},
"produces": ["application/json"],
"host": "scamp.demo.simplicite.io:-1",
"schemes": ["https"],
"swagger": "2.0",
"info": {
"license": {
"name": "Simplicite license",
"url": "http://www.simplicitesoftware.com"
},
"contact": {
"name": "Simplicite Software",
"url": "http://www.simplicitesoftware.com",
"email": "contact@simplicitesoftware.com"
},
"description": "API for Reflex",
"termsOfService": "",
"title": "Reflex",
"version": "0.1"
},
"consumes": ["application/json"]
}