salix/modules/client/back/models/incoterms.json

27 lines
529 B
JSON
Raw Normal View History

2020-01-23 13:59:37 +00:00
{
"name": "Incoterms",
"base": "VnModel",
"options": {
"mysql": {
"table": "incoterms"
}
},
"properties": {
"code": {
2022-05-12 07:47:47 +00:00
"type": "string",
2020-01-23 13:59:37 +00:00
"description": "Identifier",
"id": true
},
"name": {
2022-05-12 07:47:47 +00:00
"type": "string"
2020-01-23 13:59:37 +00:00
}
},
"acls": [
{
"accessType": "READ",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
}
]
2020-01-23 13:59:37 +00:00
}