34 lines
697 B
JSON
34 lines
697 B
JSON
|
{
|
||
|
"name": "ClientObservation",
|
||
|
"description": "Notas de los clientes.",
|
||
|
"base": "PersistedModel",
|
||
|
"validateUpsert": true,
|
||
|
"properties": {
|
||
|
"id": {
|
||
|
"type": "Number",
|
||
|
"id": true,
|
||
|
"description": "Identifier"
|
||
|
},
|
||
|
"text": {
|
||
|
"type": "string",
|
||
|
"description": "Fiscal indetifier"
|
||
|
},
|
||
|
"creationDate": {
|
||
|
"type": "date",
|
||
|
"description": "Fiscal indetifier"
|
||
|
},
|
||
|
"relations": {
|
||
|
"salesPerson": {
|
||
|
"type": "belongsTo",
|
||
|
"model": "SalesPerson",
|
||
|
"foreignKey": "salePersonId"
|
||
|
},
|
||
|
"client": {
|
||
|
"type": "belongsTo",
|
||
|
"model": "Client",
|
||
|
"foreignKey": "clientId"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|