FHIR Extensions Pack
5.1.0-cibuild - Working Copy International flag

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

StructureMap: FML Conversion for ObservationDefinition: R5 to R4

Official URL: http://hl7.org/fhir/StructureMap/ObservationDefinition5to4 Version: 5.1.0-cibuild
Standards status: Trial-use Maturity Level: 1 Computable Name: ObservationDefinition5to4

FMLConversionforObservationDefinitionR5toR4

/// url = 'http://hl7.org/fhir/StructureMap/ObservationDefinition5to4'
/// name = 'ObservationDefinition5to4'
/// title = 'FML Conversion for ObservationDefinition: R5 to R4'
/// status = 'active'

conceptmap "AdministrativeGender" {
  prefix s = "http://hl7.org/fhir/administrative-gender"
  prefix t = "http://hl7.org/fhir/4.0/administrative-gender"

  s:male - t:male
  s:female - t:female
  s:other - t:other
  s:unknown - t:unknown
}

conceptmap "ObservationDataType" {
  prefix s = "http://hl7.org/fhir/permitted-data-type"
  prefix t = "http://hl7.org/fhir/4.0/permitted-data-type"

  s:Quantity - t:Quantity
  s:CodeableConcept - t:CodeableConcept
  s:string - t:string
  s:boolean - t:boolean
  s:integer - t:integer
  s:Range - t:Range
  s:Ratio - t:Ratio
  s:SampledData - t:SampledData
  s:time - t:time
  s:dateTime - t:dateTime
  s:Period - t:Period
}

conceptmap "ObservationRangeCategory" {
  prefix s = "http://hl7.org/fhir/observation-range-category"
  prefix t = "http://hl7.org/fhir/4.0/observation-range-category"

  s:reference - t:reference
  s:critical - t:critical
  s:absolute - t:absolute
}

conceptmap "PublicationStatus" {
  prefix s = "http://hl7.org/fhir/publication-status"
  prefix t = "http://hl7.org/fhir/4.0/publication-status"

  s:draft - t:draft
  s:active - t:active
  s:retired - t:retired
  s:unknown - t:unknown
}

uses "http://hl7.org/fhir/StructureDefinition/ObservationDefinition" alias ObservationDefinitionR5 as source
uses "http://hl7.org/fhir/4.0/StructureDefinition/ObservationDefinition" alias ObservationDefinitionR4 as target

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

group ObservationDefinition(source src : ObservationDefinitionR5, target tgt : ObservationDefinitionR4) extends DomainResource <<type+>> {
  src.identifier -> tgt.identifier; // src.url -> tgt.url;
  src.category -> tgt.category; // src.version -> tgt.version;
  src.code -> tgt.code;
  src.permittedDataType as v -> tgt.permittedDataType = translate(v, '#ObservationDataType', 'code');
  src.multipleResultsAllowed -> tgt.multipleResultsAllowed;
  src.method -> tgt.method; // src.bodySite -> tgt.bodySite;
  src.preferredReportName -> tgt.preferredReportName; // src.specimen -> tgt.specimen;
  src.permittedUnit as s ->  tgt.quantitativeDetails as t,  t.customaryUnit as t1,  t1.coding = s;
  src.qualifiedValue as s -> tgt.qualifiedInterval as t then ObservationDefinitionQualifiedValue(s, t);
  src.qualifiedValue as s -> tgt.validCodedValueSet = t.validCodedValueSet;
  src.qualifiedValue as s -> tgt.normalCodedValueSet = t.normalCodedValueSet;
  src.qualifiedValue as s -> tgt.abnormalCodedValueSet = t.abnormalCodedValueSet;
  src.qualifiedValue as s -> tgt.criticalCodedValueSet = t.criticalCodedValueSet;
}

group ObservationDefinitionQualifiedValue(source src, target tgt) extends BackboneElement {
  src.context -> tgt.context;
  src.appliesTo -> tgt.appliesTo;
  src.gender as v -> tgt.gender = translate(v, '#AdministrativeGender', 'code');
  src.age -> tgt.age;
  src.gestationalAge -> tgt.gestationalAge;
  src.condition -> tgt.condition;
  src.rangeCategory as v -> tgt.category = translate(v, '#ObservationRangeCategory', 'code');
  src.range -> tgt.range;
}