PatientHistoryTrackingHistoryDto Data Type

Patient history tracking history data transfer object and this model extends AbstractPatientHistoryItemHistoryDto.

Properties
name data type constraints description
modifiedUserId number required The id of the Accuro user who updated the patient history tracking record.
createdUserId number   The id of the Accuro user who created the patient history tracking history record at the very first time.
stateDate string   The recorded date for this patient history tracking history record.
note string   The free text note on the patient history tracking record.
currentState boolean required Whether this record is a current record. It means if this is true and not deleted the history show up on Accuro tracking history band screen.
majorChange boolean required Whether this record is major change.
active boolean required Whether this is active as marked by Accuro.
deleted boolean required Whether this is deleted as marked by Accuro.
historyTrackingItem HistoryTrackingItemDto   History tracking item this patient history tracking history records are associated to.

Our documentation example is unable to display this.

Properties inherited from AbstractPatientHistoryItemHistoryDto
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

{
  "modifiedUserId" : 1,
  "createdUserId" : 1,
  "stateDate" : "2018-09-06",
  "note" : "Patient was a little unsure of the date on this event.",
  "currentState" : true,
  "majorChange" : true,
  "active" : true,
  "deleted" : true,
  "historyTrackingItem" : {
    "id" : 1,
    "historyTypeId" : 1,
    "name" : "Flu Vaccination",
    "active" : true
  },
  "id" : 1,
  "patientId" : 1,
  "maskId" : 1,
  "modifiedDate" : "2018-07-13"
}