Stream: Opthalmology
Topic: Observation
Grahame Grieve (May 15 2020 at 02:13):
{
"resourceType" : "Observation",
"code" : {
"coding" : [{
"system" : "http://dicom.nema.org/resources/ontology/DCM",
"code" : "111927",
"display" : "Total retinal thickness (ILM to IS-OS)"
}]
},
"valueQuantity" : {
"value" : "1021",
"unit" : "μm",
"system" : "http://unitsofmeasure.org",
"code" : "um"
}
}
Grahame Grieve (May 15 2020 at 02:14):
http://hl7.org/fhir/STU3/codesystem-dicom-dcim.html
Grahame Grieve (May 15 2020 at 02:22):
{
"resourceType" : "Observation",
"code" : {
"coding" : [{
"system" : "http://nema.org/dicom",
"code" : "0024,0066",
"display" : "Global Deviation from Normal"
}]
},
"valueQuantity" : {
"value" : "-12.47",
"unit" : "DB",
"system" : "http://unitsofmeasure.org",
"code" : "dB"
},
"derivedFrom" : {
"reference" : "http://my.imaging.server/FHIR/ImagingStudy/2382346872376t234"
}
}
Ashley Kras (May 15 2020 at 02:32):
http://hl7.org/fhir/imagingstudy-mappings.html#dicom ----- source for above
Ashley Kras (May 15 2020 at 02:34):
http://hl7.org/fhir/imagingstudy-mappings.html
Grahame Grieve (May 15 2020 at 02:41):
or:
"resourceType" : "Observation",
"code" : {
"coding" : [{
"system" : "http://nema.org/dicom",
"code" : "0024,0066",
"display" : "Global Deviation from Normal"
}]
},
"valueQuantity" : {
"value" : "-12.47",
"unit" : "DB",
"system" : "http://unitsofmeasure.org",
"code" : "dB"
},
"derivedFrom" : {
"reference" : "Media/2382346872376t234"
}
}
Last updated: Apr 12 2022 at 19:14 UTC