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-ballot 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
As is discussed in the Data Formats section there are two formats of the imaging reports. When presenting the content to the user two different presentation forms are used:
DiagnosticReport.Composition resource, stored in Composition.text and Composition.section.text.The Composition carries narrative at two levels, which serve different purposes:
Composition.text renders the document-level metadata that applies to the report as a whole - for example the patient, the authoring practitioner and organization, the report date, and the document type/title. It provides a human-readable summary of who/what/when the document is about, independent of any single section.Composition.section.text renders the section-specific content (for example the findings, impression or recommendations of that section).For a full explanation of what to place where, and how the attested narrative relates to the structured entries, see the FHIR guidance on Document presentation. Worked examples are available in the structured and semi-structured Imaging Report examples.
The annotations are entered as markdown which allows inclusion of tables
IHE-IMR defines a mechanism that allows inclusion multimedia content in the report. Use of these mechanisms is encouraged but not required.
This can be done using the links defined in IHE-IMR.
As is specified in the FHIR specification (and made more explicit in FHIR R6), the narrative text of resources allows the inclusion of hyperlinks. A hyperlink can refer to structured data that is included in the report as is shown in the example below.
...
The diameter of the lesion is <a href="Observation/kjiewoj">11 mm</a>.
...
The href field of the link holds a relative reference to the referred resource. When rendering this narrative, a click on this link SHOULD open a rendered version of the referred resource.
These links can be included in the text (Narrative) using the mechanism described in the previous section. This does require that the ImagingStudy/Observation resource representing the finding/prior is included in the document.
The specification focusses first on the infrastructural aspects and marks the terminology related this as extensible. We are conservative in placing terminology requirements on findings and interpretations are there currently is not a widespread consensus on what terminology is used.
This spec follows the document-level mechanics outlined in the HL7 FHIR Clinical Document — Succession Management specification, except that addenda are not allowed, and introducing requirements to the DiagnosticReport.status population.
See the replacement DiagnosticReport example and Composition example.
// DiagnosticReport
{
"resourceType": "DiagnosticReport",
"status": "amended"
}
// Composition
{
"resourceType": "Composition",
"status": "final",
"relatesTo": [
{
"type": "replaces",
"resourceReference": { "identifier": { "system": "...", "value": "..." } }
}
]
}
See the retraction DiagnosticReport example and Composition example.
// DiagnosticReport
{
"resourceType": "DiagnosticReport",
"status": "entered-in-error"
}
// Composition
{
"resourceType": "Composition",
"status": "entered-in-error",
"relatesTo": [
{
"type": "replaces",
"resourceReference": { "identifier": { "system": "...", "value": "..." } }
}
]
}
DICOM-SR reports can be accessed and referred using ImagingSelections as they are stored as instances in the PACS. In the case that the report is a DICOM-SR report,
Yes, there can be multiple reports referring the same study. A study can refer to more than one study. See semi-structured example.
These can be included as DocumentReference and are referred from the Composition.section[finding] and DiagnosticReport.media. It is RECOMMENDED to:
DocumentReference when the information is not present in the PACS (e.g. screenshots, photo's, …)ImagingSelection to refer to information in the PACS.DocumentReference over Binary as DocumentReference is patient scoped and Binary is not. Binary SHOULD only be used for images in Narratives that are included as contained resources.ImagingSelection.Currently not in scope.
AI results are stored as DICOM-SR documents which can be accessed as DICOM instances using the manifest. Optionally, the source system has the option to reflect the content of these DICOM-SR documents in FHIR using the DICOM-SR-2-FHIR IG. When elements from the AIR reports are included in the imaging report, it is RECOMMENDED to use the format specified in DICOM-SR-2-FHIR.
Artificial intelligence in medical imaging currently produces two main types of results: discrete findings generated by computer vision models, and partial or complete narrative reports generated by foundation models. For use cases involving regulatory requirements, clinical safety, auditability, or similar needs, this AI-generated content may need to be explicitly identified to enable consuming systems to determine, in a machine-readable manner, which information was generated by AI.
EHDS Imaging Reports implementations MAY support this capability through implementation of the AI Transparency on FHIR Implementation Guide, which defines mechanisms for tagging either entire resources or specific data elements as AI-generated. The guide also provides an extensible model for recording additional metadata, such as the AI model, source inputs, and the degree of human oversight.
Some of the source data for imaging report comes from DICOM. Although DICOM recommends to include time-zone information there will be situations that the timezone is not included in the DICOM data and cannot be derived from the context. In this case the document creator SHALL include the date-time value as is and add the Uncertain period Extension to indicate the uncertainty period of the datetime value.
...
"started" : "2015-02-07T13:28:17-05:00"
"_started" : {
"extension" : [
{ "url": "http://hl7.org/fhir/StructureDefinition/uncertainPeriod",
"valuePeriod" : {
"start": "2015-02-07T13:28:17-12:00",
"end": "2015-02-07T13:28:17+12:00"
}
}
]
}
...
The organization that released the imaging report is carried by Composition.author where the author is an Organization (equivalently DiagnosticReport.performer[author], constrained to Organization per FHIR-51393). Consuming systems SHOULD make this releasing organization identifiable and display it to the reader as the source of the report.
Consumers SHALL NOT infer the releasing organization from the clinical encounter: in independent-reporting / teleradiology / outside-read scenarios the encounter organization differs from the reporting organization, and the acquisition encounter may be unavailable. Where multiple author organizations are present, the releasing organization is the one referenced by the Composition/DiagnosticReport author/performer, not the encounter.
It is fully expected that organizations may assemble these document bundles and collections on the fly in response to a request, and that these documents may not be versioned. As a consequence, the lastUpdated of a bundle may not correspond to the last clinical change to a result and SHOULD NOT be relied upon as an indicator of clinical currency.