salix/services/client/common/models/sample.json

33 lines
623 B
JSON
Raw Normal View History

2018-07-25 18:47:07 +00:00
{
2018-07-27 09:18:27 +00:00
"name": "Sample",
2018-07-25 18:47:07 +00:00
"base": "VnModel",
"options": {
"mysql": {
2018-07-27 09:18:27 +00:00
"table": "sample"
2018-07-25 18:47:07 +00:00
}
},
"properties": {
"id": {
"id": true,
"type": "Number",
"description": "Identifier"
},
"code": {
"type": "String"
},
"description": {
"type": "String"
},
"isVisible": {
"type": "Number"
}
},
"acls": [
{
"accessType": "READ",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
}
]
}