hedera-web/back/common/models/alert-level.json

28 lines
435 B
JSON

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