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 Location: R4 to R5

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

FMLConversionforLocationR4toR5

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

conceptmap "LocationMode" {
  prefix s = "http://hl7.org/fhir/4.0/location-mode"
  prefix t = "http://hl7.org/fhir/location-mode"

  s:instance - t:instance
  s:kind - t:kind
}

conceptmap "LocationStatus" {
  prefix s = "http://hl7.org/fhir/4.0/location-status"
  prefix t = "http://hl7.org/fhir/location-status"

  s:active - t:active
  s:suspended - t:suspended
  s:inactive - t:inactive
}

uses "http://hl7.org/fhir/4.0/StructureDefinition/Location" alias LocationR4 as source
uses "http://hl7.org/fhir/StructureDefinition/Location" alias LocationR5 as target

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

group Location(source src : LocationR4, target tgt : LocationR5) extends DomainResource <<type+>> {
  src.identifier -> tgt.identifier;
  src.status as v -> tgt.status = translate(v, '#LocationStatus', 'code');
  src.operationalStatus -> tgt.operationalStatus;
  src.name -> tgt.name;
  src.alias -> tgt.alias;
  src.description -> tgt.description;
  src.mode as v -> tgt.mode = translate(v, '#LocationMode', 'code');
  src.type -> tgt.type;
  src.telecom : ContactPoint as s ->  tgt.contact = create('ExtendedContactDetail') as t,  t.telecom = s;
  src.address -> tgt.address;
  src.physicalType -> tgt.form;
  src.position as s -> tgt.position as t then LocationPosition(s, t);
  src.managingOrganization -> tgt.managingOrganization;
  src.partOf -> tgt.partOf;
  src.hoursOfOperation : BackboneElement as s -> tgt.hoursOfOperation as t then LocationAvailabilityAvailableTime(s, t) "availableTime"; // src.characteristic -> tgt.characteristic;
  src.endpoint -> tgt.endpoint; // src.virtualService -> tgt.virtualService;
}

group LocationPosition(source src, target tgt) extends BackboneElement {
  src.longitude -> tgt.longitude;
  src.latitude -> tgt.latitude;
  src.altitude -> tgt.altitude;
}

group LocationAvailabilityAvailableTime(source src, target tgt) extends BackboneElement {
  src.daysOfWeek as s ->  tgt.availableTime as t,  t.daysOfWeek = s;
  src.allDay as s ->  tgt.availableTime as t,  t.allDay = s;
  src.openingTime : time as s ->  tgt.availableTime as t,  t.availableStartTime = s;
  src.closingTime : time as s ->  tgt.availableTime as t,  t.availableEndTime = s;
}