44 lines
934 B
JSON
44 lines
934 B
JSON
{
|
|
"name": "DmsType",
|
|
"description": "Documental Managment system types",
|
|
"base": "VnModel",
|
|
"options": {
|
|
"mysql": {
|
|
"table": "dmsType"
|
|
}
|
|
},
|
|
"properties": {
|
|
"id": {
|
|
"type": "number",
|
|
"id": true,
|
|
"description": "Identifier"
|
|
},
|
|
"name": {
|
|
"type": "string",
|
|
"required": true
|
|
},
|
|
"code": {
|
|
"type": "string",
|
|
"required": true
|
|
}
|
|
},
|
|
"relations": {
|
|
"readRole": {
|
|
"type": "belongsTo",
|
|
"model": "VnRole",
|
|
"foreignKey": "readRoleFk"
|
|
},
|
|
"writeRole": {
|
|
"type": "belongsTo",
|
|
"model": "VnRole",
|
|
"foreignKey": "writeRoleFk"
|
|
}
|
|
},
|
|
"acls": [{
|
|
"accessType": "READ",
|
|
"principalType": "ROLE",
|
|
"principalId": "$everyone",
|
|
"permission": "ALLOW"
|
|
}]
|
|
}
|