salix/services/client/common/models/contact-channel.json

30 lines
534 B
JSON
Raw Normal View History

{
2017-05-11 12:19:43 +00:00
"name": "ContactChannel",
2017-05-17 12:58:23 +00:00
"base": "MyModel",
"validateUpsert": true,
"properties": {
"id": {
"type": "Number",
"id": true,
"description": "Identifier"
},
"name": {
"type": "string",
"required": true
}
},
"acls": [
{
"accessType": "*",
"principalType": "ROLE",
"principalId": "$everyone",
2017-05-18 15:54:23 +00:00
"permission": "DENY"
2017-06-01 07:31:57 +00:00
},
{
"accessType": "*",
"principalType": "ROLE",
"principalId": "root",
"permission": "ALLOW"
}
]
}