salix/back/models/chat.json

48 lines
957 B
JSON
Raw Permalink Normal View History

{
"name": "Chat",
"base": "VnModel",
2022-06-02 12:55:39 +00:00
"options": {
"mysql": {
"table": "chat"
}
},
"properties": {
"id": {
"id": true,
"type": "number",
"description": "Identifier"
},
"senderFk": {
"type": "number"
},
"recipient": {
"type": "string"
},
"dated": {
"type": "date"
},
"checkUserStatus": {
"type": "boolean"
},
"message": {
"type": "string"
},
"status": {
"type": "string"
},
"attempts": {
"type": "number"
2022-07-27 07:16:49 +00:00
},
"error": {
"type": "string"
2022-06-02 12:55:39 +00:00
}
},
"acls": [{
"property": "validations",
"accessType": "EXECUTE",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
}]
}