salix/back/models/country.json

58 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2017-10-13 14:22:45 +00:00
{
2019-03-20 09:10:36 +00:00
"name": "Country",
"description": "Worldwide countries",
"base": "VnModel",
"options": {
"mysql": {
"table": "country"
2019-03-20 09:10:36 +00:00
}
2017-10-13 14:22:45 +00:00
},
2019-03-20 09:10:36 +00:00
"properties": {
"id": {
2022-05-12 07:47:47 +00:00
"type": "number",
"id": true,
"description": "Identifier"
2019-03-20 09:10:36 +00:00
},
2024-04-25 10:35:21 +00:00
"name": {
"type": "string",
"required": true
2019-03-20 09:10:36 +00:00
},
"code": {
"type": "string"
},
"isUeeMember": {
2022-05-12 07:47:47 +00:00
"type": "boolean"
2023-07-14 09:30:13 +00:00
},
"isSocialNameUnique": {
"type": "boolean"
2024-05-23 07:22:19 +00:00
},
"continentFk": {
"type": "number"
},
"hasDailyInvoice": {
"type": "boolean",
"description": "Indicates if the autonomy has daily invoice enabled"
2019-03-20 09:10:36 +00:00
}
2017-10-13 14:22:45 +00:00
},
2019-03-20 09:10:36 +00:00
"relations": {
"currency": {
"type": "belongsTo",
"model": "Currency",
"foreignKey": "currencyFk"
2024-05-23 07:22:19 +00:00
},
"continent": {
"type": "belongsTo",
"model": "Continent",
"foreignKey": "continentFk"
2019-03-20 09:10:36 +00:00
}
},
"acls": [
{
"accessType": "READ",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
2019-03-20 09:10:36 +00:00
}
]
2023-07-14 09:30:13 +00:00
}