36 lines
789 B
JSON
36 lines
789 B
JSON
{
|
|
"name": "AddressObservation",
|
|
"base": "VnModel",
|
|
"options": {
|
|
"mysql": {
|
|
"table": "addressObservation"
|
|
}
|
|
},
|
|
"properties": {
|
|
"id": {
|
|
"type": "Number",
|
|
"id": true,
|
|
"description": "Identifier"
|
|
},
|
|
"description": {
|
|
"type": "string",
|
|
"required": true
|
|
},
|
|
"observationTypeFk": {
|
|
"required": true
|
|
}
|
|
},
|
|
"relations": {
|
|
"address": {
|
|
"type": "belongsTo",
|
|
"model": "Address",
|
|
"foreignKey": "addressFk"
|
|
},
|
|
"observationType": {
|
|
"type": "belongsTo",
|
|
"model": "ObservationType",
|
|
"foreignKey": "observationTypeFk"
|
|
}
|
|
}
|
|
}
|
|
|