HL7 Europe Imaging Report R5, published by HL7 Europe. This guide is not an authorized publication; it is the continuous build for version 1.0.0-beta built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/hl7-eu/imaging-r5/ and changes regularly. See the Directory of published versions
This example addresses representing a imaging report that has the minimal amount of the structured data.
The structure of this report is illustrated in the figure below.
This example corresponds to the Renderable format with minimal metadata data format.
The report is represented as a DocumentReference resource following the profile DocumentReferenceImagingReport. It refers to a Patient and to an Organization resource that represents the custodian of the document.
Resources used in this example:
content.attachment.url points to the report bundle.DiagnosticReport.presentedForm.The full DocumentReference resource is presented below.
{
"resourceType" : "DocumentReference",
"id" : "RenderableFormatWithBasicMetadata",
...
"language" : "en",
...
"identifier" : [
{
"use" : "usual",
"system" : "urn:ietf:rfc:3986",
"value" : "http://unstructured-report.example.com"
}
],
"status" : "current",
"modality" : [
{
"coding" : [
{
"system" : "http://dicom.nema.org/resources/ontology/DCM",
"code" : "CT"
}
]
}
],
"type" : {
"coding" : [
{
"system" : "http://loinc.org",
"code" : "85430-7",
"display" : "Diagnostic imaging report - example sections and entries"
}
]
},
"category" : [
{
"coding" : [
{
"system" : "http://hl7.eu/fhir/eu-health-data-api/CodeSystem/eehrxf-document-priority-category-cs",
"code" : "Medical-Imaging"
}
]
}
],
"subject" : {
🔗 "reference" : "Patient/PatientUnstructuredReport"
},
"bodySite" : [
{
"concept" : {
"coding" : [
{
"system" : "http://snomed.info/sct",
"code" : "774007"
},
{
"system" : "http://snomed.info/sct",
"code" : "38266002"
}
]
}
}
],
"date" : "2024-01-01T00:00:00Z",
"custodian" : {
🔗 "reference" : "Organization/OrganizationUnstructuredReport"
},
"content" : [
{
"attachment" : {
"contentType" : "application/fhir+json",
"language" : "de",
"url" : "./Bundle/bundle-report-minimal-metadata-unstructured",
"creation" : "2024-01-01T00:00:00Z"
},
"profile" : [
{
"valueCanonical" : "http://hl7.eu/fhir/imaging-r5/StructureDefinition/BundleReportMinimalMetadataEuImaging"
}
]
}
]
}