-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasic.config.json
More file actions
48 lines (45 loc) · 1.04 KB
/
basic.config.json
File metadata and controls
48 lines (45 loc) · 1.04 KB
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
{
"$schema": "https://raw.githubusercontent.com/RKInnovate/rkload/main/schemas/v1/config.schema.json",
"version": 1,
"GET": [
{
"name": "root",
"url": "https://api.example.com/",
"headers": {},
"body": "",
"c": 200,
"requests": 500
},
{
"name": "billing-plans",
"url": "https://api.example.com/api/v1/billing/plans",
"headers": {},
"body": "",
"c": 100,
"requests": 1000
},
{
"name": "desktop-validate-key",
"url": "https://api.example.com/api/v1/desktop/validate-key",
"headers": {
"x-api-key": "REPLACE_WITH_YOUR_KEY"
},
"body": "",
"c": 50,
"requests": 500
}
],
"POST": [
{
"name": "auth-login",
"url": "https://api.example.com/api/v1/auth/login",
"headers": {
"Content-Type": "application/json"
},
"body": "{\"email\":\"user@example.com\",\"password\":\"REPLACE_ME\",\"totp_code\":null}",
"c": 100,
"requests": 200
}
],
"DELETE": []
}