salix/services/loopback/common/models/credit-classification.json

30 lines
506 B
JSON
Raw Normal View History

{
"name": "CreditClassification",
"description": "Clasified clients",
2017-10-11 13:36:47 +00:00
"base": "VnModel",
"options": {
"mysql": {
"table": "creditClassification"
}
},
"properties": {
"id": {
"id": true,
"type": "Number",
"description": "Identifier"
},
"started": {
"type": "date"
},
"ended": {
"type": "date"
}
},
"relations": {
"client": {
"type": "belongsTo",
"model": "Client",
"foreignKey": "clientFk"
}
2017-10-11 13:36:47 +00:00
}
}