salix/services/client/common/models/ClientObservation.json

48 lines
887 B
JSON
Raw Normal View History

2017-01-17 09:59:27 +00:00
{
"name": "ClientObservation",
"description": "Notas de los clientes.",
"base": "PersistedModel",
"validateUpsert": true,
"properties": {
"id": {
"type": "Number",
"id": true,
"description": "Identifier"
},
2017-05-09 12:04:44 +00:00
"clientFk": {
"type": "Number"
},
"employeeFk": {
"type": "Number"
},
2017-01-17 09:59:27 +00:00
"text": {
"type": "string",
2017-01-18 13:48:35 +00:00
"description": "Text"
2017-01-17 09:59:27 +00:00
},
2017-05-09 12:04:44 +00:00
"creationTime": {
2017-01-17 09:59:27 +00:00
"type": "date",
2017-05-09 12:04:44 +00:00
"description": "Creation date and time"
}
},
"relations": {
2017-05-09 12:04:44 +00:00
"employeeFk": {
"type": "hasOne",
"model": "Employee",
"foreignKey": "id"
2017-01-17 09:59:27 +00:00
},
2017-05-09 12:04:44 +00:00
"clientFk": {
2017-03-10 10:18:16 +00:00
"type": "hasOne",
"model": "Client",
"foreignKey": "id"
2017-01-17 09:59:27 +00:00
}
2017-03-14 12:08:55 +00:00
},
"acls": [
{
"accessType": "*",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
}
]
2017-01-17 09:59:27 +00:00
}