{ "fields": { "puls": { "type": "link" }, "pulsId": { "type": "varchar", "len": 17 }, "team": { "type": "link" }, "teamId": { "type": "varchar", "len": 17 }, "aktiv": { "type": "bool", "default": true }, "abgeschlossen": { "type": "bool", "default": false }, "prioritaet": { "type": "enum", "options": ["Niedrig", "Normal", "Hoch", "Dringend"], "default": "Normal" }, "createdAt": { "type": "datetime", "readOnly": true }, "modifiedAt": { "type": "datetime", "readOnly": true } }, "links": { "puls": { "type": "belongsTo", "entity": "CPuls", "foreign": "teamZuordnungen" }, "team": { "type": "belongsTo", "entity": "Team" } }, "collection": { "orderBy": "createdAt", "order": "desc" }, "indexes": { "pulsId": { "columns": ["pulsId"] }, "teamId": { "columns": ["teamId"] }, "aktiv": { "columns": ["aktiv"] }, "abgeschlossen": { "columns": ["abgeschlossen"] } } }