32 lines
564 B
JSON
32 lines
564 B
JSON
|
{
|
||
|
"name": "Client",
|
||
|
"base": "MyModel",
|
||
|
"validateUpsert": true,
|
||
|
"properties": {
|
||
|
"id": {
|
||
|
"type": "Number",
|
||
|
"id": true,
|
||
|
"description": "Identifier"
|
||
|
},
|
||
|
"name": {
|
||
|
"type": "string",
|
||
|
"required": true
|
||
|
}
|
||
|
},
|
||
|
"acls": [
|
||
|
{
|
||
|
"accessType": "*",
|
||
|
"principalType": "ROLE",
|
||
|
"principalId": "$everyone",
|
||
|
"permission": "DENY"
|
||
|
},
|
||
|
{
|
||
|
"accessType": "*",
|
||
|
"principalType": "ROLE",
|
||
|
"principalId": "root",
|
||
|
"permission": "ALLOW"
|
||
|
}
|
||
|
],
|
||
|
"validations": [],
|
||
|
"methods": {}
|
||
|
}
|