loopback/test/fixtures/simple-integration-app/common/models/physician.json

15 lines
231 B
JSON

{
"name": "physician",
"properties": {
"name": "string"
},
"relations": {
"patients": {
"model": "patient",
"type": "hasMany",
"through": "appointment",
"foreignKey": "patientId"
}
}
}