This page is part of the FHIR Core Extensions Registry (v1.0.0: Releases) based on FHIR v5.0.0. This is the current published version in its permanent home (it will always be available at this URL). For a full list of available versions, see the Directory of published versions
Official URL: http://hl7.org/fhir/StructureMap/MedicationDispense4to5 | Version: 1.0.0 | |||
Standards status: Trial-use | Maturity Level: 1 | Computable Name: MedicationDispense4to5 |
FMLConversionforMedicationDispenseR4toR5
/// url = 'http://hl7.org/fhir/StructureMap/MedicationDispense4to5' /// name = 'MedicationDispense4to5' /// title = 'FML Conversion for MedicationDispense: R4 to R5' /// status = 'active' conceptmap "MedicationDispenseStatus" { prefix s = "http://terminology.hl7.org/CodeSystem/medicationdispense-status" prefix t = "http://hl7.org/fhir/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/4.0/StructureDefinition/MedicationDispense" alias MedicationDispenseR4 as source uses "http://hl7.org/fhir/StructureDefinition/MedicationDispense" alias MedicationDispenseR5 as target imports "http://hl7.org/fhir/StructureMap/*4to5" group MedicationDispense(source src : MedicationDispenseR4, target tgt : MedicationDispenseR5) 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.statusReason : CodeableConcept -> tgt.notPerformedReason; src.statusReason : Reference -> tgt.notPerformedReason; src.category -> tgt.category; // src.statusChanged -> tgt.statusChanged; src.medication : CodeableConcept -> tgt.medication; src.medication : Reference -> tgt.medication; src.subject -> tgt.subject; src.context -> tgt.encounter; 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; }