forked from SAP-samples/cloud-cap-samples-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxs-security-mt.json
64 lines (64 loc) · 1.35 KB
/
xs-security-mt.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
58
59
60
61
62
63
64
{
"xsappname": "bookshop-java-public",
"tenant-mode": "shared",
"scopes": [
{
"name": "$XSAPPNAME.admin",
"description": "admin"
},
{
"name": "$XSAPPNAME.mtcallback",
"description": "Multi Tenancy Callback Access",
"grant-as-authority-to-apps": [
"$XSAPPNAME(application,sap-provisioning,tenant-onboarding)"
]
},
{
"name": "$XSAPPNAME.mtdeployment",
"description": "Scope to trigger a re-deployment of the database artifacts"
},
{
"name": "$XSAPPNAME.ExtendCDS",
"description": "Extend your own tenant's models"
},
{
"name": "$XSAPPNAME.ExtendCDSdelete",
"description": "Undeploy your own tenant's extensions"
}
],
"attributes": [
{
"name": "businessPartner",
"description": "S/4 BusinessPartner ID assigned to the user",
"valueType": "string"
}
],
"role-templates": [
{
"name": "admin",
"description": "generated",
"scope-references": [
"$XSAPPNAME.admin"
],
"attribute-references": [
"businessPartner"
]
},
{
"name": "Extension_Developer",
"description": "CDS Extension Developer",
"scope-references": [
"$XSAPPNAME.ExtendCDS"
],
"attribute-references": []
},
{
"name": "Extension_Admin",
"description": "CDS Extension Administrator",
"scope-references": [
"$XSAPPNAME.ExtendCDS",
"$XSAPPNAME.ExtendCDSdelete"
]
}
]
}