0.1.0 - World

FHIR Mapping Language (FML), 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/mapping-language-ig/ and changes regularly. See the Directory of published versions

StructureMap:

: http://hl7.org/fhir/uv/mapping-language/StructureMap/DependentMultiGroup :
Standards status: Informative : DependentMultiGroup

Example demonstrating invoking multiple groups in sequence separated by commas

/// url = 'http://hl7.org/fhir/uv/mapping-language/StructureMap/DependentMultiGroup'
/// name = 'DependentMultiGroup'
/// status = 'active'
/// description = 'Example demonstrating invoking multiple groups in sequence separated by commas'

uses "http://hl7.org/fhir/StructureDefinition/Patient" as source
uses "http://hl7.org/fhir/StructureDefinition/Patient" as target
uses "http://hl7.org/fhir/StructureDefinition/HumanName" as source
uses "http://hl7.org/fhir/StructureDefinition/HumanName" as target

group DependentMultiGroup(source src : Patient, target tgt : Patient) {
  src.name as sn -> tgt.name as tn then CopyFamily(sn, tn), CopyGiven(sn, tn) "r1";
}

group CopyFamily(source src : HumanName, target tgt : HumanName) {
  src.family as v -> tgt.family = v;
}

group CopyGiven(source src : HumanName, target tgt : HumanName) {
  src.given as v -> tgt.given = v;
}