39 lines
669 B
JSON
39 lines
669 B
JSON
{
|
|
"name": "Warehouse",
|
|
"base": "MyModel",
|
|
"validateUpsert": true,
|
|
"properties": {
|
|
"id": {
|
|
"id": true,
|
|
"type": "Number",
|
|
"forceId": false
|
|
},
|
|
"name": {
|
|
"type": "String"
|
|
},
|
|
"tpv": {
|
|
"type": "Number"
|
|
},
|
|
"inventory": {
|
|
"type": "Number"
|
|
}
|
|
},
|
|
"acls": [
|
|
{
|
|
"accessType": "*",
|
|
"principalType": "ROLE",
|
|
"principalId": "$everyone",
|
|
"permission": "DENY"
|
|
},
|
|
{
|
|
"accessType": "*",
|
|
"principalType": "ROLE",
|
|
"principalId": "root",
|
|
"permission": "ALLOW"
|
|
}
|
|
],
|
|
"scopes" : {
|
|
"production" : {"where": {"tpv": {"neq": 0}}}
|
|
}
|
|
}
|