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

30 lines
556 B
JSON
Raw Normal View History

2017-12-20 08:53:50 +00:00
{
"name": "Ink",
"base": "VnModel",
"options": {
"mysql": {
"table": "ink"
2017-12-20 08:53:50 +00:00
}
},
"properties": {
"id": {
2022-05-12 07:47:47 +00:00
"type": "string",
2017-12-20 08:53:50 +00:00
"id": true,
"description": "Identifier"
},
"name": {
2022-05-12 07:47:47 +00:00
"type": "string"
2017-12-20 08:53:50 +00:00
},
"showOrder": {
"type": "number"
}
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
}