Bulk Import
Patient Data from file
Patient data/records stored on paper can be imported from a file.
The location of the file is provided and the application parses and stores the patient data as a complete electronic health record.
The designated file format/template is JSON (JavaScript Object Notation) .
Other supported file format/template will be excel row/column data
The following information can be parsed from the JSON
{
"PatientID": "32423445",
"AttendingId": "397581",
"PatientExtID": "123-23-3555",
"FirstName": "Denzil",
"LastName": "Chin",
"Address1": "Windsor Castle P.O",
"Address2": "",
"Parish": "Portland",
"DOB": "5/4/1970",
"Sex": "Male",
"Home#": "345-352-5746",
"Cell#": "123-457-1333",
"AppointmentDate": "01/10/2018",
"AppointmentTime": "10:00 AM",
"PrescriptionDescription": "Data Import Prescription2",
"DiagnosisDescription": "Data Import Diagnosis Description2",
"Scheduled": 1,
"Cancelled": 0,
"Billed": false,
"AptAttendingId": "397581",
"DiagnosisId": "D1101",
"DeptId" : "13"
"Attending": "Doctor"
},
{
"PatientID": "32723440",
"AttendingId": "754420",
"PatientExtID": "123-23-3555",
"FirstName": "Gregory",
"LastName": "Chin",
"Address1": "Windsor Castle P.O",
"Address2": "",
"Parish": "Portland",
"DOB": "8/4/1967",
"Sex": "Male",
"Home#": "547-352-2348",
"Cell#": "234-457-2345",
"AppointmentDate": "02/11/2018",
"AppointmentTime": "10:30 AM",
"PrescriptionDescription": "Data Import Prescription3",
"DiagnosisDescription": "Data Import Diagnosis Description3",
"Scheduled": 1,
"Cancelled": 0,
"Billed": false,
"AptAttendingId": "754420",
"DiagnosisId": "D1104",
"DeptId" : "12"
"Attending": "NursePracticioner"
}