34 lines
473 B
JSON
34 lines
473 B
JSON
|
{
|
||
|
"name": "Language",
|
||
|
"base": "VnModel",
|
||
|
"options": {
|
||
|
"mysql": {
|
||
|
"table": "hedera.language"
|
||
|
}
|
||
|
},
|
||
|
"properties": {
|
||
|
"code": {
|
||
|
"type": "string",
|
||
|
"id": true
|
||
|
},
|
||
|
"name": {
|
||
|
"type": "string",
|
||
|
"required": true
|
||
|
},
|
||
|
"orgName": {
|
||
|
"type": "string",
|
||
|
"required": true
|
||
|
},
|
||
|
"isActive": {
|
||
|
"type": "boolean"
|
||
|
}
|
||
|
},
|
||
|
"acls": [
|
||
|
{
|
||
|
"accessType": "READ",
|
||
|
"principalType": "ROLE",
|
||
|
"principalId": "$everyone",
|
||
|
"permission": "ALLOW"
|
||
|
}
|
||
|
]
|
||
|
}
|