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 MessageDefinition: R5 to R4

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

FMLConversionforMessageDefinitionR5toR4

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

conceptmap "MessageSignificanceCategory" {
  prefix s = "http://hl7.org/fhir/message-significance-category"
  prefix t = "http://hl7.org/fhir/4.0/message-significance-category"

  s:consequence - t:consequence
  s:currency - t:currency
  s:notification - t:notification
}

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
}

conceptmap "messageheader-response-request" {
  prefix s = "http://hl7.org/fhir/messageheader-response-request"
  prefix t = "http://hl7.org/fhir/4.0/messageheader-response-request"

  s:always - t:always
  s:"on-error" - t:"on-error"
  s:never - t:never
  s:"on-success" - t:"on-success"
}

uses "http://hl7.org/fhir/StructureDefinition/MessageDefinition" alias MessageDefinitionR5 as source
uses "http://hl7.org/fhir/4.0/StructureDefinition/MessageDefinition" alias MessageDefinitionR4 as target

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

group MessageDefinition(source src : MessageDefinitionR5, target tgt : MessageDefinitionR4) extends DomainResource <<type+>> {
  src.url -> tgt.url;
  src.identifier -> tgt.identifier;
  src.version -> tgt.version;
  src.name -> tgt.name; // src.versionAlgorithm : string -> tgt.versionAlgorithm;
  src.title -> tgt.title;
  src.replaces -> tgt.replaces;
  src.status as v -> tgt.status = translate(v, '#PublicationStatus', 'code');
  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.copyrightLabel -> tgt.copyrightLabel;
  src.parent -> tgt.parent;
  src.event : Coding -> tgt.event;
  src.event : uri -> tgt.event;
  src.category as v -> tgt.category = translate(v, '#MessageSignificanceCategory', 'code');
  src.focus as s -> tgt.focus as t then MessageDefinitionFocus(s, t);
  src.responseRequired as v -> tgt.responseRequired = translate(v, '#messageheader-response-request', 'code');
  src.allowedResponse as s -> tgt.allowedResponse as t then MessageDefinitionAllowedResponse(s, t);
  src.graph -> tgt.graph;
}

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

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