salix/modules/client/back/models/sample.json

50 lines
988 B
JSON

{
"name": "Sample",
"base": "VnModel",
"options": {
"mysql": {
"table": "sample"
}
},
"properties": {
"id": {
"id": true,
"type": "number",
"description": "Identifier"
},
"code": {
"type": "string"
},
"description": {
"type": "string"
},
"isVisible": {
"type": "boolean"
},
"hasCompany": {
"type": "boolean"
},
"hasPreview": {
"type": "boolean"
},
"datepickerEnabled": {
"type": "boolean"
},
"model": {
"type": "string"
}
},
"scopes": {
"visible": {
"where": {"isVisible": true}
}
},
"acls": [
{
"accessType": "READ",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
}
]
}