{ "name": "ClientObservation", "description": "Client notes", "base": "VnModel", "mixins": { "Loggable": true }, "options": { "mysql": { "table": "clientObservation" } }, "properties": { "id": { "type": "number", "id": true, "description": "Identifier" }, "clientFk": { "type": "number" }, "text": { "type": "string", "description": "Text" }, "created": { "type": "date", "description": "Creation date and time" }, "observationTypeFk": { "type": "number", "description": "Type of observation" } }, "relations": { "worker": { "type": "belongsTo", "model": "Worker", "foreignKey": "workerFk" }, "client": { "type": "belongsTo", "model": "Client", "foreignKey": "clientFk" } }, "scope": { "include": { "relation": "worker", "scope": { "fields": [ "id" ], "include": { "relation": "user", "scope": { "fields": [ "nickname" ] } } } } } }