-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdb.json
More file actions
47 lines (47 loc) · 1023 Bytes
/
db.json
File metadata and controls
47 lines (47 loc) · 1023 Bytes
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
{
"users": [
{
"firstName": "Rakesh",
"lastName": "Rakhi",
"email": "rakesh@gmail.com",
"applications": [
{
"name": "ANI",
"role": "BAMS_MGR",
"status": true
},
{
"name": "BNI",
"role": "ANI_SAD",
"status": true
}
]
}
],
"applications": [
{
"name": "BAMS",
"groups": [
"BAMS_SAD",
"BAMS_MGR",
"BAMS_CEO"
]
},
{
"name": "ANI",
"groups": [
"ANI_SAD",
"ANI_MGR",
"ANI_CEO"
]
},
{
"name": "CERT",
"groups": [
"CERT_SAD",
"CERT_MGR",
"CERT_CEO"
]
}
]
}