38 lines
810 B
JSON
38 lines
810 B
JSON
{
|
|
"name": "EntryObservation",
|
|
"base": "Loggable",
|
|
"log": {
|
|
"model": "EntryLog",
|
|
"relation": "entry"
|
|
},
|
|
"options": {
|
|
"mysql": {
|
|
"table": "entryObservation"
|
|
}
|
|
},
|
|
"properties": {
|
|
"id": {
|
|
"id": true,
|
|
"type": "Number",
|
|
"description": "Identifier"
|
|
},
|
|
"description": {
|
|
"type": "String",
|
|
"required": true
|
|
}
|
|
},
|
|
"relations": {
|
|
"entry": {
|
|
"type": "belongsTo",
|
|
"model": "Entry",
|
|
"foreignKey": "entryFk"
|
|
},
|
|
"observationType": {
|
|
"type": "belongsTo",
|
|
"model": "ObservationType",
|
|
"foreignKey": "observationTypeFk",
|
|
"required": true
|
|
}
|
|
}
|
|
}
|