FHIR Extensions Pack
1.0.0 - Working Copy International flag

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

StructureMap: FML Conversion for EpisodeOfCare: R4 to R5

Official URL: http://hl7.org/fhir/StructureMap/EpisodeOfCare4to5 Version: 1.0.0
Standards status: Trial-use Maturity Level: 1 Computable Name: EpisodeOfCare4to5

FMLConversionforEpisodeOfCareR4toR5

/// url = 'http://hl7.org/fhir/StructureMap/EpisodeOfCare4to5'
/// name = 'EpisodeOfCare4to5'
/// title = 'FML Conversion for EpisodeOfCare: R4 to R5'
/// status = 'active'

conceptmap "EpisodeOfCareStatus" {
  prefix s = "http://hl7.org/fhir/4.0/episode-of-care-status"
  prefix t = "http://hl7.org/fhir/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/4.0/StructureDefinition/EpisodeOfCare" alias EpisodeOfCareR4 as source
uses "http://hl7.org/fhir/StructureDefinition/EpisodeOfCare" alias EpisodeOfCareR5 as target

imports "http://hl7.org/fhir/StructureMap/*4to5"

group EpisodeOfCare(source src : EpisodeOfCareR4, target tgt : EpisodeOfCareR5) 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.team -> tgt.careTeam;
  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.role -> tgt.use;
}