bhands
08/11/2022, 11:54 PMrahul1
08/11/2022, 11:54 PMrahul1
08/11/2022, 11:56 PMbhands
08/11/2022, 11:59 PMrahul1
08/12/2022, 12:00 AMPatient resource for the patient details (https://www.hl7.org/fhir/patient.html)
2. An Observation resource for each (key,value) pair to record a single measurement (http://hl7.org/fhir/observation.html)
3. A DiagnosticReport resource to group the Observations into reports (https://www.hl7.org/fhir/diagnosticreport.html)rahul1
08/12/2022, 12:04 AMPatient resource should be relatively self-explanatory, but let me know if you need help.
For each Observation resource, there are 3 key properties you'll have to set:
1. status - either"final" is probably good enough for now
2. code - this is where you indicate the type of test that was run, preferably using a standard coding system like "LOINC". (see our docs on Codeable concepts for more info: https://docs.medplum.com/fhir-basics#codeable-concepts-standarding-data)
3. The valueQuantity field, which encodes the value and units of the testbhands
08/12/2022, 12:08 AMrahul1
08/12/2022, 12:08 AMDiagnosticReport resource, the key fields you'll need are.
1. status : just set to "final" for now
2. the code field: Can just be some text Codeable Concept describing the report type
3. The result field, which is an array of `Reference`s to the your Observationsrahul1
08/12/2022, 12:09 AMrahul1
08/12/2022, 12:09 AMrahul1
08/12/2022, 12:10 AMrahul1
08/12/2022, 12:11 AMbhands
08/12/2022, 12:11 AMrahul1
08/12/2022, 12:12 AMbhands
08/12/2022, 12:12 AMrahul1
08/12/2022, 12:12 AMbhands
08/12/2022, 12:13 AMbhands
08/12/2022, 12:13 AMrahul1
08/12/2022, 12:13 AM