{ "name": "NotificationSubscription", "base": "VnModel", "options": { "mysql": { "table": "util.notificationSubscription" } }, "properties": { "notificationFk": { "type": "number", "id": true, "description": "Identifier" }, "userFk": { "type": "number", "id": true, "description": "Identifier" } }, "relations": { "notification": { "type": "belongsTo", "model": "Notification", "foreignKey": "notificationFk" }, "user": { "type": "belongsTo", "model": "Account", "foreignKey": "userFk" } } }