{ "name": "ItemBarcode", "base": "VnModel", "mixins": { "Loggable": true }, "options": { "mysql": { "table": "itemBarcode" } }, "properties": { "id": { "type": "number", "id": true, "description": "Identifier" }, "code": { "type": "string", "required": true } }, "relations": { "item": { "type": "belongsTo", "model": "Item", "foreignKey": "itemFk" } } }