This page is part of the FHIR Core Extensions Registry (v1.0.0: Releases) based on FHIR 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
Official URL: http://hl7.org/fhir/StructureMap/DiagnosticReport5to4B | Version: 1.0.0 | |||
Standards status: Trial-use | Maturity Level: 1 | Computable Name: DiagnosticReport5to4B |
FMLConversionforDiagnosticReportR5toR4B
/// url = 'http://hl7.org/fhir/StructureMap/DiagnosticReport5to4B' /// name = 'DiagnosticReport5to4B' /// title = 'FML Conversion for DiagnosticReport: R5 to R4B' /// status = 'active' conceptmap "DiagnosticReportStatus" { prefix s = "http://hl7.org/fhir/diagnostic-report-status" prefix t = "http://hl7.org/fhir/4.3/diagnostic-report-status" s:registered - t:registered s:partial - t:partial s:modified - t:partial s:preliminary - t:preliminary s:final - t:final s:amended - t:amended s:corrected - t:corrected s:appended - t:appended s:cancelled - t:cancelled s:"entered-in-error" - t:"entered-in-error" s:unknown - t:unknown } uses "http://hl7.org/fhir/StructureDefinition/DiagnosticReport" alias DiagnosticReportR5 as source uses "http://hl7.org/fhir/4.3/StructureDefinition/DiagnosticReport" alias DiagnosticReportR4B as target imports "http://hl7.org/fhir/StructureMap/*5to4B" group DiagnosticReport(source src : DiagnosticReportR5, target tgt : DiagnosticReportR4B) extends DomainResource <<type+>> { src.identifier -> tgt.identifier; src.basedOn -> tgt.basedOn; src.status as v -> tgt.status = translate(v, '#DiagnosticReportStatus', 'code'); src.category -> tgt.category; src.code -> tgt.code; src.subject -> tgt.subject; src.encounter -> tgt.encounter; src.effective : dateTime -> tgt.effective; src.effective : Period -> tgt.effective; src.issued -> tgt.issued; src.performer -> tgt.performer; src.resultsInterpreter -> tgt.resultsInterpreter; src.specimen -> tgt.specimen; src.result -> tgt.result; src.media as s -> tgt.media as t then DiagnosticReportMedia(s, t); // src.note -> tgt.note; src.conclusion -> tgt.conclusion; // src.composition -> tgt.composition; src.conclusionCode -> tgt.conclusionCode; src.presentedForm -> tgt.presentedForm; } // group DiagnosticReportSupportingInfo(source src, target tgt) extends BackboneElement { // src.type -> tgt.type; // src.reference -> tgt.reference; // } group DiagnosticReportMedia(source src, target tgt) extends BackboneElement { src.comment -> tgt.comment; src.link -> tgt.link; }