50 lines
791 B
JSON
50 lines
791 B
JSON
{
|
|
"name": "Postcode",
|
|
"base": "VnModel",
|
|
"options": {
|
|
"mysql": {
|
|
"table": "postCode"
|
|
}
|
|
},
|
|
"properties": {
|
|
"code": {
|
|
"id": true,
|
|
"type": "String"
|
|
}
|
|
},
|
|
"relations": {
|
|
"town": {
|
|
"type": "belongsTo",
|
|
"model": "Town",
|
|
"foreignKey": "townFk"
|
|
},
|
|
"geo": {
|
|
"type": "belongsTo",
|
|
"model": "ZoneGeo",
|
|
"foreignKey": "geoFk"
|
|
}
|
|
},
|
|
"acls": [{
|
|
"accessType": "READ",
|
|
"principalType": "ROLE",
|
|
"principalId": "$everyone",
|
|
"permission": "ALLOW"
|
|
}],
|
|
"scopes": {
|
|
"location": {
|
|
"include": {
|
|
"relation": "town",
|
|
"scope": {
|
|
"include": {
|
|
"relation": "province",
|
|
"scope": {
|
|
"include": {
|
|
"relation": "country"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |