33 lines
543 B
JSON
33 lines
543 B
JSON
|
{
|
||
|
"name": "CreditInsurance",
|
||
|
"description": "Credit insurance",
|
||
|
"base": "VnModel",
|
||
|
"options": {
|
||
|
"mysql": {
|
||
|
"table": "creditInsurance"
|
||
|
}
|
||
|
},
|
||
|
"properties": {
|
||
|
"id": {
|
||
|
"id": true,
|
||
|
"type": "Number",
|
||
|
"description": "Identifier"
|
||
|
},
|
||
|
"credit": {
|
||
|
"type": "Number"
|
||
|
},
|
||
|
"creationDate": {
|
||
|
"type": "date"
|
||
|
},
|
||
|
"grade": {
|
||
|
"type": "Number"
|
||
|
}
|
||
|
},
|
||
|
"relations": {
|
||
|
"creditClassification": {
|
||
|
"type": "belongsTo",
|
||
|
"model": "CreditClassification",
|
||
|
"foreignKey": "creditClassification"
|
||
|
}
|
||
|
}
|
||
|
}
|