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
|
{
"acls": [
{
"user": "alice",
"actions": [
"edit",
"read"
],
"component": "component_A",
"project": "project_A",
"organization": "org_A"
},
{
"user": "bob",
"actions": ["read"],
"organization": "org_A"
},
{
"user": "bob",
"action": ["edit"],
"component": "component_A",
"project": "project_B",
"organization": "org_A"
},
{
"user": "charlie",
"action": ["read"],
"project": "project_B",
"organization": "org_A"
}
]
}
|