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/Group4to5 | Version: 5.1.0 | |||
Standards status: Trial-use | Maturity Level: 1 | Computable Name: Group4to5 |
FMLConversionforGroupR4toR5
/// url = 'http://hl7.org/fhir/StructureMap/Group4to5' /// name = 'Group4to5' /// title = 'FML Conversion for Group: R4 to R5' /// status = 'active' conceptmap "GroupType" { prefix s = "http://hl7.org/fhir/4.0/group-type" prefix t = "http://hl7.org/fhir/group-type" s:person - t:person s:animal - t:animal s:practitioner - t:practitioner s:device - t:device } uses "http://hl7.org/fhir/4.0/StructureDefinition/Group" alias GroupR4 as source uses "http://hl7.org/fhir/StructureDefinition/Group" alias GroupR5 as target imports "http://hl7.org/fhir/StructureMap/*4to5" group Group(source src : GroupR4, target tgt : GroupR5) extends DomainResource <<type+>> { src.identifier -> tgt.identifier; src.active -> tgt.active; src.type as v -> tgt.type = translate(v, '#GroupType', 'code'); src.code -> tgt.code; // src.membership as v -> tgt.membership = translate(v, '#group-membership-basis', 'code'); src.name -> tgt.name; src.quantity -> tgt.quantity; // src.description -> tgt.description; src.managingEntity -> tgt.managingEntity; src.characteristic as s -> tgt.characteristic as t then GroupCharacteristic(s, t); src.member as s -> tgt.member as t then GroupMember(s, t); } group GroupCharacteristic(source src, target tgt) extends BackboneElement { src.code -> tgt.code; src.value : CodeableConcept -> tgt.value; src.value : boolean -> tgt.value; src.value : Quantity -> tgt.value; src.value : Range -> tgt.value; src.value : Reference -> tgt.value; src.exclude -> tgt.exclude; src.period -> tgt.period; } group GroupMember(source src, target tgt) extends BackboneElement { src.entity -> tgt.entity; src.period -> tgt.period; src.inactive -> tgt.inactive; }