FHIR Cross-Version Mapping Pack
0.1.0 - Ballot for Release 5.1.0 International flag

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

StructureMap: MessageDefinition Transforms: R4 to R3

Official URL: http://hl7.org/fhir/StructureMap/MessageDefinition4to3 Version: 0.1.0
Standards status: Draft Maturity Level: 1 Computable Name: MessageDefinition4to3

MessageDefinitionTransformsR4toR3

/// url = 'http://hl7.org/fhir/StructureMap/MessageDefinition4to3'
/// name = 'MessageDefinition4to3'
/// title = 'MessageDefinition Transforms: R4 to R3'
/// status = 'active'

uses "http://hl7.org/fhir/4.0/MessageDefinition" alias MessageDefinition as source
uses "http://hl7.org/fhir/3.0/MessageDefinition" alias MessageDefinitionR3 as target

imports "http://hl7.org/fhir/StructureMap/*4to3"

group MessageDefinition(source src : MessageDefinition, target tgt : MessageDefinitionR3) extends DomainResource <<type+>> {
  src.url -> tgt.url;
  src.identifier -> tgt.identifier;
  src.version -> tgt.version;
  src.name -> tgt.name;
  src.title -> tgt.title;
  src.status -> tgt.status;
  src.experimental -> tgt.experimental;
  src.date -> tgt.date;
  src.publisher -> tgt.publisher;
  src.contact -> tgt.contact;
  src.description -> tgt.description;
  src.useContext -> tgt.useContext;
  src.jurisdiction -> tgt.jurisdiction;
  src.purpose -> tgt.purpose;
  src.copyright -> tgt.copyright;
  src.base -> tgt.base;
  src.parent -> tgt.parent;
  src.replaces -> tgt.replaces;
  src.event as vs0 -> tgt.event = create('Coding') as vt0 then Coding(vs0, vt0);
  src.category as v -> tgt.category = translate(v, 'http://hl7.org/fhir/ConceptMap/MessageDefinition.category-R4toR3', 'code');
  src.focus as vs0 -> tgt.focus as vt0 then focus(vs0, vt0);
  src.responseRequired where value = 'always' -> tgt.responseRequired = 'true';
  src.responseRequired where value = 'never' -> tgt.responseRequired = 'false';
  src.allowedResponse as vs0 -> tgt.allowedResponse as vt0 then allowedResponse(vs0, vt0);
}

group focus(source src, target tgt) extends BackboneElement {
  src.code -> tgt.code;
  src.profile -> tgt.profile;
  src.min -> tgt.min;
  src.max -> tgt.max;
}

group allowedResponse(source src, target tgt) extends BackboneElement {
  src.message -> tgt.message;
  src.situation -> tgt.situation;
}