This page is part of the FHIR Core Extensions Registry (v5.1.0-snapshot1: Release 5.1) based on FHIR (HL7® FHIR® Standard) v5.0.0. The current version which supersedes this version is 1.0.0. For a full list of available versions, see the Directory of published versions
Official URL: http://hl7.org/fhir/StructureMap/MedicationDispense5to4B | Version: 5.1.0-snapshot1 | |||
Standards status: Trial-use | Maturity Level: 1 | Computable Name: MedicationDispense5to4B |
FMLConversionforMedicationDispenseR5toR4B
/// url = 'http://hl7.org/fhir/StructureMap/MedicationDispense5to4B' /// name = 'MedicationDispense5to4B' /// title = 'FML Conversion for MedicationDispense: R5 to R4B' /// status = 'active' conceptmap "MedicationDispenseStatus" { prefix s = "http://hl7.org/fhir/CodeSystem/medicationdispense-status" prefix t = "http://terminology.hl7.org/CodeSystem/medicationdispense-status" s:preparation - t:preparation s:"in-progress" - t:"in-progress" s:cancelled - t:cancelled s:"on-hold" - t:"on-hold" s:completed - t:completed s:"entered-in-error" - t:"entered-in-error" s:stopped - t:stopped s:declined - t:declined s:unknown - t:unknown } uses "http://hl7.org/fhir/StructureDefinition/MedicationDispense" alias MedicationDispenseR5 as source uses "http://hl7.org/fhir/4.3/StructureDefinition/MedicationDispense" alias MedicationDispenseR4B as target imports "http://hl7.org/fhir/StructureMap/*5to4B" group MedicationDispense(source src : MedicationDispenseR5, target tgt : MedicationDispenseR4B) extends DomainResource <<type+>> { src.identifier -> tgt.identifier; src.partOf -> tgt.partOf; // src.basedOn -> tgt.basedOn; src.status as v -> tgt.status = translate(v, '#MedicationDispenseStatus', 'code'); src.notPerformedReason -> tgt.statusReason; src.category -> tgt.category; // src.statusChanged -> tgt.statusChanged; src.medication -> tgt.medication; src.subject -> tgt.subject; src.encounter -> tgt.context; src.supportingInformation -> tgt.supportingInformation; src.performer as s -> tgt.performer as t then MedicationDispensePerformer(s, t); src.location -> tgt.location; src.authorizingPrescription -> tgt.authorizingPrescription; src.type -> tgt.type; src.quantity -> tgt.quantity; src.daysSupply -> tgt.daysSupply; src.whenPrepared -> tgt.whenPrepared; // src.recorded -> tgt.recorded; src.whenHandedOver -> tgt.whenHandedOver; src.destination -> tgt.destination; src.receiver -> tgt.receiver; src.note -> tgt.note; src.dosageInstruction -> tgt.dosageInstruction; // src.renderedDosageInstruction -> tgt.renderedDosageInstruction; src.substitution as s -> tgt.substitution as t then MedicationDispenseSubstitution(s, t); src.eventHistory -> tgt.eventHistory; } group MedicationDispensePerformer(source src, target tgt) extends BackboneElement { src.function -> tgt.function; src.actor -> tgt.actor; } group MedicationDispenseSubstitution(source src, target tgt) extends BackboneElement { src.wasSubstituted -> tgt.wasSubstituted; src.type -> tgt.type; src.reason -> tgt.reason; src.responsibleParty -> tgt.responsibleParty; }