32 lines
478 B
JSON
32 lines
478 B
JSON
{
|
|
"name": "Country",
|
|
"description": "Worldwide countries",
|
|
"base": "PersistedModel",
|
|
"options": {
|
|
"mysql": {
|
|
"table": "country"
|
|
}
|
|
},
|
|
"properties": {
|
|
"id": {
|
|
"type": "Number",
|
|
"id": true,
|
|
"description": "Identifier"
|
|
},
|
|
"country": {
|
|
"type": "string",
|
|
"required": true
|
|
},
|
|
"code": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"acls": [
|
|
{
|
|
"accessType": "READ",
|
|
"principalType": "ROLE",
|
|
"principalId": "$everyone",
|
|
"permission": "ALLOW"
|
|
}
|
|
]
|
|
} |