34 lines
737 B
JSON
34 lines
737 B
JSON
{
|
|
"name": "EntryObservation",
|
|
"base": "Loggable",
|
|
"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
|
|
}
|
|
}
|
|
}
|