salix/services/client/common/models/client-contact.json

32 lines
609 B
JSON
Raw Normal View History

{
"name": "ClientContact",
"description": "Client phone contacts",
"base": "VnModel",
"options": {
"mysql": {
"table": "clientContact",
"database": "vn"
}
},
"validateUpsert": true,
"properties": {
"id": {
"type": "Number",
"id": true,
"description": "Identifier"
},
"name": {
"type": "string"
},
"phone": {
"type": "string"
}
},
"relations": {
"client": {
"type": "belongsTo",
"model": "Client",
"foreignKey": "clientFk"
}
}
}