40 lines
849 B
JSON
40 lines
849 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
|
|
},
|
|
"error": {
|
|
"type": "String",
|
|
"required": true
|
|
}
|
|
},
|
|
"relations": {
|
|
"item": {
|
|
"type": "belongsTo",
|
|
"model": "Item",
|
|
"foreignKey": "itemFk"
|
|
}
|
|
},
|
|
"acls": [
|
|
{
|
|
"accessType": "*",
|
|
"principalType": "ROLE",
|
|
"principalId": "employee",
|
|
"permission": "ALLOW"
|
|
}
|
|
]
|
|
} |