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
Official URL: http://hl7.org/fhir/StructureMap/CodeableConcept5to4 | Version: 1.0.0 | |||
Standards status: Trial-use | Maturity Level: 1 | Computable Name: CodeableConcept5to4 |
FMLConversionforCodeableConceptR5toR4
/// url = 'http://hl7.org/fhir/StructureMap/CodeableConcept5to4' /// name = 'CodeableConcept5to4' /// title = 'FML Conversion for CodeableConcept: R5 to R4' /// status = 'active' uses "http://hl7.org/fhir/4.0/StructureDefinition/CodeableConcept" alias CodeableConceptR4 as target uses "http://hl7.org/fhir/4.0/StructureDefinition/Coding" alias CodingR4 as target uses "http://hl7.org/fhir/4.0/StructureDefinition/code" alias codeR4 as target uses "http://hl7.org/fhir/4.0/StructureDefinition/string" alias stringR4 as target uses "http://hl7.org/fhir/StructureDefinition/CodeableConcept" alias CodeableConceptR5 as source uses "http://hl7.org/fhir/StructureDefinition/CodeableReference" alias CodeableReferenceR5 as source uses "http://hl7.org/fhir/StructureDefinition/Coding" alias CodingR5 as source uses "http://hl7.org/fhir/StructureDefinition/code" alias codeR5 as source imports "http://hl7.org/fhir/StructureMap/*5to4" group CodeableConcept(source src : CodeableConceptR5, target tgt : CodeableConceptR4) extends Element <<type+>> { src.coding -> tgt.coding; src.text -> tgt.text; } group CodeableConcept2Coding(source src : CodeableConceptR5, target tgt : CodingR4) extends Element <<types>> { src.coding as s -> tgt as t then Coding(s, t); } group CodeableReference2Coding(source src : CodeableReferenceR5, target tgt : CodingR4) extends Element <<types>> { src.concept as s -> tgt then { s.coding as v -> tgt then Coding(v, tgt); }; } group CodeableReference2CodeableConcept(source src : CodeableReferenceR5, target tgt : CodeableConceptR4) extends Element <<types>> { src.concept as s -> tgt as t then CodeableConcept(s, t); } group CodeableConcept2string(source src : CodeableConceptR5, target tgt : stringR4) extends Element <<types>> { src.text as v -> tgt.value = v "CodeableConcept2string"; } group CodeableReference2string(source src : CodeableReferenceR5, target tgt : stringR4) extends Element <<types>> { src.concept as s -> tgt as t then CodeableConcept2string(s, t); } group Coding2CodeableConcept(source src : CodingR5, target tgt : CodeableConceptR4) extends Element <<types>> { src as s -> tgt.coding as t then Coding(s, t) "Coding"; } group CodeableConcept2code(source src : CodeableConceptR5, target tgt : codeR4, source sysUrl : string) extends Element <<types>> { src.coding as s where s.system = sysUrl -> tgt then { s.code -> tgt.value; }; } group code2CodeableConcept(source src : codeR5, target tgt : CodeableConceptR4, source sysUrl : string) extends Element <<types>> { src.value as s -> tgt.coding = create('Coding') as t, t.system = sysUrl, t.code = s; }