salix/modules/ticket/back/models/alert-level.json

28 lines
576 B
JSON

{
"name": "AlertLevel",
"description": "Alert levels of a ticket",
"base": "VnModel",
"options": {
"mysql": {
"table": "alertLevel"
}
},
"properties": {
"code": {
"type": "string"
},
"id": {
"type": "number",
"id": true,
"description": "Identifier"
}
},
"acls": [
{
"accessType": "READ",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
}
]
}