36 lines
760 B
JSON
36 lines
760 B
JSON
|
{
|
||
|
"name": "ItemImageQueue",
|
||
|
"description": "Image download queue",
|
||
|
"base": "VnModel",
|
||
|
"options": {
|
||
|
"mysql": {
|
||
|
"table": "itemImageQueue"
|
||
|
}
|
||
|
},
|
||
|
"properties": {
|
||
|
"itemFk": {
|
||
|
"type": "Number",
|
||
|
"id": true,
|
||
|
"description": "Identifier"
|
||
|
},
|
||
|
"url": {
|
||
|
"type": "String",
|
||
|
"required": true
|
||
|
}
|
||
|
},
|
||
|
"relations": {
|
||
|
"item": {
|
||
|
"type": "belongsTo",
|
||
|
"model": "Item",
|
||
|
"foreignKey": "itemFk"
|
||
|
}
|
||
|
},
|
||
|
"acls": [
|
||
|
{
|
||
|
"accessType": "*",
|
||
|
"principalType": "ROLE",
|
||
|
"principalId": "employee",
|
||
|
"permission": "ALLOW"
|
||
|
}
|
||
|
]
|
||
|
}
|