salix/modules/account/back/models/mail.json

36 lines
641 B
JSON

{
"name": "Mail",
"base": "VnModel",
"options": {
"mysql": {
"table": "mail"
}
},
"properties": {
"id": {
"id": true,
"type": "number"
},
"receiver": {
"type": "string"
},
"replyTo": {
"type": "string"
},
"subject": {
"type": "string"
},
"body": {
"type": "string"
}
},
"acls": [
{
"accessType": "READ",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
}
]
}