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

28 lines
576 B
JSON
Raw Permalink Normal View History

2018-12-21 11:06:01 +00:00
{
"name": "AlertLevel",
"description": "Alert levels of a ticket",
"base": "VnModel",
"options": {
"mysql": {
"table": "alertLevel"
}
},
"properties": {
2020-02-17 12:50:54 +00:00
"code": {
"type": "string"
},
"id": {
"type": "number",
2020-02-17 12:50:54 +00:00
"id": true,
"description": "Identifier"
}
2018-12-21 11:06:01 +00:00
},
"acls": [
2020-02-17 12:50:54 +00:00
{
"accessType": "READ",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
}
2018-12-21 11:06:01 +00:00
]
2020-02-17 12:50:54 +00:00
}