30 lines
540 B
JSON
30 lines
540 B
JSON
|
{
|
||
|
"name": "Province",
|
||
|
"base": "MyModel",
|
||
|
"validateUpsert": true,
|
||
|
"properties": {
|
||
|
"id": {
|
||
|
"type": "Number",
|
||
|
"id": true,
|
||
|
"description": "Identifier"
|
||
|
},
|
||
|
"name": {
|
||
|
"type": "string",
|
||
|
"required": true
|
||
|
}
|
||
|
},
|
||
|
"acls": [
|
||
|
{
|
||
|
"accessType": "READ",
|
||
|
"principalType": "ROLE",
|
||
|
"principalId": "$everyone",
|
||
|
"permission": "ALLOW"
|
||
|
},
|
||
|
{
|
||
|
"accessType": "WRITE",
|
||
|
"principalType": "ROLE",
|
||
|
"principalId": "$everyone",
|
||
|
"permission": "DENY"
|
||
|
}
|
||
|
]
|
||
|
}
|