This page is part of the FHIR Core Extensions Registry (v5.1.0: Release 5.1) 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
Official URL: http://hl7.org/fhir/StructureMap/EpisodeOfCare5to4 | Version: 5.1.0 | |||
Standards status: Trial-use | Maturity Level: 1 | Computable Name: EpisodeOfCare5to4 |
FMLConversionforEpisodeOfCareR5toR4
/// url = 'http://hl7.org/fhir/StructureMap/EpisodeOfCare5to4' /// name = 'EpisodeOfCare5to4' /// title = 'FML Conversion for EpisodeOfCare: R5 to R4' /// status = 'active' conceptmap "EpisodeOfCareStatus" { prefix s = "http://hl7.org/fhir/episode-of-care-status" prefix t = "http://hl7.org/fhir/4.0/episode-of-care-status" s:planned - t:planned s:waitlist - t:waitlist s:active - t:active s:onhold - t:onhold s:finished - t:finished s:cancelled - t:cancelled s:"entered-in-error" - t:"entered-in-error" } uses "http://hl7.org/fhir/StructureDefinition/EpisodeOfCare" alias EpisodeOfCareR5 as source uses "http://hl7.org/fhir/4.0/StructureDefinition/EpisodeOfCare" alias EpisodeOfCareR4 as target imports "http://hl7.org/fhir/StructureMap/*5to4" group EpisodeOfCare(source src : EpisodeOfCareR5, target tgt : EpisodeOfCareR4) extends DomainResource <<type+>> { src.identifier -> tgt.identifier; src.status as v -> tgt.status = translate(v, '#EpisodeOfCareStatus', 'code'); src.statusHistory as s -> tgt.statusHistory as t then EpisodeOfCareStatusHistory(s, t); src.type -> tgt.type; src.diagnosis as s -> tgt.diagnosis as t then EpisodeOfCareDiagnosis(s, t); // src.reason as s -> tgt.reason as t then EpisodeOfCareReason(s,t); src.patient -> tgt.patient; src.managingOrganization -> tgt.managingOrganization; src.period -> tgt.period; src.referralRequest -> tgt.referralRequest; src.careManager -> tgt.careManager; src.careTeam -> tgt.team; src.account -> tgt.account; } group EpisodeOfCareStatusHistory(source src, target tgt) extends BackboneElement { src.status as v -> tgt.status = translate(v, '#EpisodeOfCareStatus', 'code'); src.period -> tgt.period; } // group EpisodeOfCareReason(source src, target tgt) extends BackboneElement { // src.use -> tgt.use; // src.value -> tgt.value; // } group EpisodeOfCareDiagnosis(source src, target tgt) extends BackboneElement { src.condition -> tgt.condition; src.use -> tgt.role; }