HL7 Europe Imaging Report R5
1.0.0-beta - ci-build 150

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

Example report with renderable content and minimal metadata

Renderable format with minimal metadata

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.

RenderableFormatWithBasicMetadata«DocumentReference»BundleReportMinimalMetadata«Bundle»type : #collectionDiagnosticReportMinimalMetadata«DiagnosticReport»presentedForm : Attachment~PDF~basedOn : Reference~ServiceRequest~ (or identifier)study/imagingStudy : Reference~ImagingStudy~ (or identifier)PatientUnstructuredReport«Patient»OrganizationUnstructuredReport«Organization»BinaryUnstructuredReport«Binary»contentType : application/pdfR4 element name: imagingStudyR5 element name: studycontent.attachment.urlsubjectcustodianentry (required)entry (optional)entry (optional)subjectperformerpresentedForm
Figure: Renderable format with minimal metadata resource structure

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:

  • DocumentReference: wrapper resource used for indexing and retrieval metadata; its content.attachment.url points to the report bundle.
  • Bundle: collection bundle that groups the core report resources for exchange.
  • DiagnosticReport: main clinical report resource carrying report metadata and references to study/order as identifiers.
  • Patient: subject of the report.
  • Organization: reporting/custodian organization metadata.
  • Binary: PDF payload referenced from 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"
        }
      ]
    }
  ]
}