This is an abstract model of patient history item history and, currently, sub models extending it are as follows:
| name | data type | constraints | description |
|---|---|---|---|
| id | number | required | The unique id of the patient history history record. |
| patientId | number | required | The unique id of the patient who owns the history record. |
| maskId | number | If the record is masked in Accuro, this value will hold the mask id, null otherwise.
|
|
| modifiedDate | string | The date this patient history item was modified. |
Example
{
"id" : 1,
"patientId" : 1,
"maskId" : 1,
"modifiedDate" : "2018-07-13"
}