Media — Removed in R5
Media existed in FHIR R4 to carry clinical multimedia content. It was removed in R5: its role is split among DocumentReference, Observation and ImagingStudy depending on usage.
Status in R5
The HL7 Orders & Observations work group found that Media was largely used for cases more precisely covered by DocumentReference (documents, clinical photographs) or Observation (image-derived measures, snapshots). Removal avoids fragmentation and standardizes queries: a client searching for "all patient content" now queries DocumentReference and Observation uniformly.
Replacements by use case
- Clinical photograph (skin lesion, wound) — DocumentReference with
category=clinical-photoand acontent[].attachmentcarrying the image or its URL. - Imaging screen capture — Observation with
valueAttachmentor ImagingStudy if DICOM-compliant. - Audio (auscultation, voice memo) — DocumentReference,
contentType=audio/mp3. - Video (endoscopy, ultrasound) — DocumentReference,
contentType=video/mp4, or ImagingStudy if PACS-attached. - ID photo (patient face) — Patient.photo (inline Attachment).
Migration path from R4
- Identify R4 Media by
type:image,video,audio. - For each, determine the clinical context: linked to an ImagingStudy (DICOM), to a report (DocumentReference), to a measure (Observation).
- Create the target resources with the R4 Media
identifierasidentifierfor traceability. - Update the resources that referenced R4 Media (
basedOn,derivedFrom, etc.). - Keep R4 Media read-only (versioned) during transition; marking them
status=entered-in-erroris incorrect because they were valid in R4.
Related resources
- DocumentReference — main replacement for binary content.
- Observation — for content tied to a measure.
- ImagingStudy — for DICOM imaging.