{ "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" }, "attempts": { "type": "number" }, "created": { "type": "date" }, "updated": { "type": "date" } }, "relations": { "item": { "type": "belongsTo", "model": "Item", "foreignKey": "itemFk" } }, "acls": [ { "accessType": "*", "principalType": "ROLE", "principalId": "employee", "permission": "ALLOW" } ] }