salix/services/client/common/models/ContactChannel.json

24 lines
408 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"
}
]
}