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

24 lines
416 B
JSON
Raw Normal View History

{
2017-05-11 12:19:43 +00:00
"name": "ContactChannel",
"base": "PersistedModel",
"validateUpsert": true,
"properties": {
"id": {
"type": "Number",
"id": true,
"description": "Identifier"
},
"name": {
"type": "string",
"required": true
}
},
"acls": [
{
"accessType": "*",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
}
]
}