This page is part of the HL7 Europe Imaging Study Report (v1.0.0-ballot: STU 1 Ballot 2) based on FHIR (HL7® FHIR® Standard) v5.0.0. This is the current published version in its permanent home (it will always be available at this URL). For a full list of available versions, 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"
}
]
}
]
}