-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathxs-security-services.json
57 lines (57 loc) · 1.66 KB
/
xs-security-services.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
52
53
54
55
56
57
{
"xsappname": "productmanagementapp",
"tenant-mode": "shared",
"description": "Security profile of Multi-Tenant Product Management Service",
"scopes": [{
"name": "$XSAPPNAME.Viewer",
"description": "Viewer Scope for read-only operations on products"
}, {
"name": "$XSAPPNAME.Modify",
"description": "Update Scope for management of products"
}],
"attributes": [{
"name": "Country",
"description": "Country",
"valueType": "string"
},
{
"name": "CostCenter",
"description": "Cost Center ID",
"valueType": "string"
}
],
"role-templates": [{
"name": "product_viewer",
"description": "Role for read-only operations on products",
"scope-references": [
"$XSAPPNAME.Viewer"
]
}, {
"name": "product_update",
"description": "Role for management of products",
"scope-references": [
"$XSAPPNAME.Modify",
"$XSAPPNAME.Viewer"
]
}, {
"name": "product_viewer_with_attributes",
"description": "Role for read-only operations on products with attributes",
"scope-references": [
"$XSAPPNAME.Viewer"
],
"attribute-references": [
"Country"
]
}, {
"name": "product_update_with_attributes",
"description": "Role for management of products with attributes",
"scope-references": [
"$XSAPPNAME.Viewer",
"$XSAPPNAME.Modify"
],
"attribute-references": [
"Country",
"CostCenter"
]
}]
}