43 lines
873 B
JSON
43 lines
873 B
JSON
|
{
|
||
|
"name": "Autonomy",
|
||
|
"description": "Autonomies of every country",
|
||
|
"base": "VnModel",
|
||
|
"options": {
|
||
|
"mysql": {
|
||
|
"table": "autonomy"
|
||
|
}
|
||
|
},
|
||
|
"properties": {
|
||
|
"id": {
|
||
|
"type": "Number",
|
||
|
"id": true,
|
||
|
"description": "Identifier"
|
||
|
},
|
||
|
"name": {
|
||
|
"type": "string",
|
||
|
"required": true
|
||
|
}
|
||
|
},
|
||
|
"relations": {
|
||
|
"country": {
|
||
|
"type": "belongsTo",
|
||
|
"model": "Country",
|
||
|
"foreignKey": "countryFk"
|
||
|
}
|
||
|
},
|
||
|
"scopes": {
|
||
|
"location": {
|
||
|
"include": {
|
||
|
"relation": "country"
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"acls": [
|
||
|
{
|
||
|
"accessType": "READ",
|
||
|
"principalType": "ROLE",
|
||
|
"principalId": "$everyone",
|
||
|
"permission": "ALLOW"
|
||
|
}
|
||
|
]
|
||
|
}
|