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

27 lines
502 B
JSON
Raw Normal View History

{
"name": "Specie",
"base": "VnModel",
"options": {
"mysql": {
"table": "vn.specie"
}
},
"properties": {
"id": {
2022-05-12 07:47:47 +00:00
"type": "number",
"id": true,
"description": "Identifier"
},
"name": {
2022-05-12 07:47:47 +00:00
"type": "string"
}
2018-02-21 08:28:17 +00:00
},
"acls": [
{
"accessType": "READ",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
}
]
}