FHIR Cross-Version Mapping Pack
0.1.0 - Ballot for Release 5.1.0 International flag

FHIR Cross-Version Mapping Pack, published by HL7 International / FHIR Infrastructure. This guide is not an authorized publication; it is the continuous build for version 0.1.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/fhir-cross-version/ and changes regularly. See the Directory of published versions

StructureMap: Location Transforms: R5 to R4

Official URL: http://hl7.org/fhir/StructureMap/Location5to4 Version: 0.1.0
Standards status: Draft Maturity Level: 1 Computable Name: Location5to4

LocationTransformsR5toR4

/// url = 'http://hl7.org/fhir/StructureMap/Location5to4'
/// name = 'Location5to4'
/// title = 'Location Transforms: R5 to R4'
/// status = 'active'

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

imports "http://hl7.org/fhir/StructureMap/*5to4"

group Location(source src : LocationR5, target tgt : LocationR4) extends DomainResource <<type+>> {
  src.identifier -> tgt.identifier;
  src.status as v -> tgt.status = translate(v, 'http://hl7.org/fhir/ConceptMap/Location.status-R5toR4', '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, 'http://hl7.org/fhir/ConceptMap/Location.mode-R5toR4', 'code');
  src.type -> tgt.type;
  src.contact as s -> tgt.telecom = s.telecom;
  src.address -> tgt.address;
  src.form -> tgt.physicalType;
  src.position as s -> tgt.position as t then LocationPosition(s, t);
  src.managingOrganization -> tgt.managingOrganization;
  src.partOf -> tgt.partOf;
  src.hoursOfOperation as s ->  tgt.hoursOfOperation = create('BackboneElement') as te,  te.daysOfWeek = s.daysOfWeek,  te.allDay = s.allDay,  te.openingTime = s.availableStartTime,  te.closingTime = s.availableEndTime;
  src.endpoint -> tgt.endpoint;
}

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