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: OperationDefinition Transforms: R4 to R3

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

OperationDefinitionTransformsR4toR3

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

uses "http://hl7.org/fhir/4.0/OperationDefinition" alias OperationDefinition as source
uses "http://hl7.org/fhir/3.0/OperationDefinition" alias OperationDefinitionR3 as target

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

group OperationDefinition(source src : OperationDefinition, target tgt : OperationDefinitionR3) extends DomainResource <<type+>> {
  src.url -> tgt.url;
  src.version -> tgt.version;
  src.name -> tgt.name;
  src.status -> tgt.status;
  src.kind -> tgt.kind;
  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.affectsState -> tgt.idempotent;
  src.code -> tgt.code;
  src.comment as vs -> tgt.comment as vt then markdownToString(vs, vt);
  src.base -> tgt.base;
  src.resource -> tgt.resource;
  src.system -> tgt.system;
  src.type -> tgt.type;
  src.instance -> tgt.instance;
  src.parameter as vs0 -> tgt.parameter as vt0 then parameter(vs0, vt0);
  src.overload as vs0 -> tgt.overload as vt0 then {
    vs0.parameterName -> vt0.parameterName;
    vs0.comment -> vt0.comment;
  };
}

group parameter(source src, target tgt) extends BackboneElement {
  src.name -> tgt.name;
  src.use -> tgt.use;
  src.min -> tgt.min;
  src.max -> tgt.max;
  src.documentation -> tgt.documentation;
  src.type -> tgt.type;
  src.searchType -> tgt.searchType;
  src.targetProfile -> tgt.profile "profile";
  src.binding as vs0 -> tgt.binding as vt0 then binding(vs0, vt0);
  src.part as vs0 -> tgt.part as vt0 then parameter(vs0, vt0);
}

group binding(source src, target tgt) extends BackboneElement {
  src.strength -> tgt.strength;
  src.valueSet as vs0 where value.startsWith('http://hl7.org').not() -> tgt.valueSet = create('uri') as vt0 then canonical2Uri(vs0, vt0) "valueSetU";
  src.valueSet as vs0 where value.startsWith('http://hl7.org') -> tgt.valueSet = create('Reference') as vt0 then canonical2Reference(vs0, vt0) "valueSetR";
}