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
Official URL: http://hl7.org/fhir/StructureMap/DataRequirement5to4B | Version: 0.1.0 | |||
Standards status: Draft | Maturity Level: 1 | Computable Name: DataRequirement5to4B |
DataRequirementTransformsR5toR4B
/// url = 'http://hl7.org/fhir/StructureMap/DataRequirement5to4B' /// name = 'DataRequirement5to4B' /// title = 'DataRequirement Transforms: R5 to R4B' /// status = 'active' uses "http://hl7.org/fhir/5.0/DataRequirement" alias DataRequirementR5 as source uses "http://hl7.org/fhir/4.0/DataRequirement" alias DataRequirementR4B as target imports "http://hl7.org/fhir/StructureMap/*5to4B" group DataRequirement(source src : DataRequirementR5, target tgt : DataRequirementR4B) extends Element <<type+>> { src.type as v -> tgt.type = translate(v, 'http://hl7.org/fhir/cross-version/types5to4B', 'code'); src.profile -> tgt.profile; src.subject : CodeableConcept -> tgt.subject; src.subject : Reference -> tgt.subject; src.mustSupport -> tgt.mustSupport; src.codeFilter as s -> tgt.codeFilter as t then DataRequirementCodeFilter(s, t); src.dateFilter as s -> tgt.dateFilter as t then DataRequirementDateFilter(s, t); src.limit -> tgt.limit; src.sort as s -> tgt.sort as t then DataRequirementSort(s, t); } group DataRequirementCodeFilter(source src, target tgt) extends Element { src.path -> tgt.path; src.searchParam -> tgt.searchParam; src.valueSet -> tgt.valueSet; src.code -> tgt.code; } group DataRequirementDateFilter(source src, target tgt) extends Element { src.path -> tgt.path; src.searchParam -> tgt.searchParam; src.value : dateTime -> tgt.value; src.value : Period -> tgt.value; src.value : Duration -> tgt.value; } // - not in R4B // group DataRequirementValueFilter(source src, target tgt) extends Element { // src.path -> tgt.path; // src.searchParam -> tgt.searchParam; // src.comparator -> tgt.comparator; // src.value : dateTime -> tgt.value; // src.value : Period -> tgt.value; // src.value : Duration -> tgt.value; // } group DataRequirementSort(source src, target tgt) extends Element { src.path -> tgt.path; src.direction as v -> tgt.direction = translate(v, 'http://hl7.org/fhir/ConceptMap/DataRequirement.sort.direction-R5toR4', 'code'); }