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: ProcedureRequest Transforms: R2 to R3

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

ProcedureRequestTransformsR2toR3

/// url = 'http://hl7.org/fhir/StructureMap/ProcedureRequest2to3'
/// name = 'ProcedureRequest2to3'
/// title = 'ProcedureRequest Transforms: R2 to R3'
/// status = 'active'

uses "http://hl7.org/fhir/1.0/ProcedureRequest" alias ProcedureRequestR2 as source
uses "http://hl7.org/fhir/3.0/ProcedureRequest" alias ProcedureRequest as target

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

group ProcedureRequest(source src : ProcedureRequestR2, target tgt : ProcedureRequest) extends DomainResource <<type+>> {
  src.identifier -> tgt.identifier "ProcedureRequest-identifier";
  src.subject -> tgt.subject "ProcedureRequest-subject";
  src.code -> tgt.code "ProcedureRequest-code";
  src.bodySite -> tgt.bodySite "ProcedureRequest-bodySite";
  src.reason as v where v.is(CodeableConcept) -> tgt.reasonCode = v "ProcedureRequest-reason1";
  src.reason as v where v.is(Reference) -> tgt.reasonReference = v "ProcedureRequest-reason2";
  src.scheduled -> tgt.occurrence "ProcedureRequest-scheduled";
  src.encounter -> tgt.context "ProcedureRequest-encounter";
  src.performer -> tgt.performer "ProcedureRequest-performer";
  src.status -> tgt.status "ProcedureRequest-status";
  src.notes -> tgt.note "ProcedureRequest-notes";
  src.asNeeded -> tgt.asNeeded "ProcedureRequest-asNeeded";
  src.orderedOn -> tgt.authoredOn "ProcedureRequest-orderedOn";
  src.orderer as v ->  tgt.requester as d,  d.agent = v "ProcedureRequest-orderer";
  src.priority -> tgt.priority "ProcedureRequest-priority";
}