salix/modules/item/back/models/origin.json

30 lines
557 B
JSON
Raw Normal View History

2017-12-20 08:53:50 +00:00
{
"name": "Origin",
"base": "VnModel",
"options": {
"mysql": {
"table": "origin"
2017-12-20 08:53:50 +00:00
}
},
"properties": {
"id": {
2021-11-08 16:46:40 +00:00
"type": "number",
2017-12-20 08:53:50 +00:00
"id": true,
"description": "Identifier"
},
"code": {
2021-11-08 16:46:40 +00:00
"type": "string"
2017-12-20 08:53:50 +00:00
},
"name": {
2021-11-08 16:46:40 +00:00
"type": "string"
2017-12-20 08:53:50 +00:00
}
2018-02-21 08:28:17 +00:00
},
"acls": [
{
"accessType": "READ",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
}
]
2017-12-20 08:53:50 +00:00
}