FHIR Extensions Pack v5.1.0-cibuild (2024-03-27)

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

Pharmacy Work GroupMaturity Level: N/AStandards Status: InformativeSecurity Category: N/A Compartments: N/A

Following are maps for converting between the equivalent R4B resource and this R5 resource.

Maps to MedicationDispense

FML Conversion for MedicationDispense: R5 to R4 (Ready for Use/Trial Use)

/// url = 'http://hl7.org/fhir/StructureMap/MedicationDispense5to4'
/// name = 'MedicationDispense5to4'
/// title = 'FML Conversion for MedicationDispense: R5 to R4'
/// 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.0/StructureDefinition/MedicationDispense" alias MedicationDispenseR4 as target

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

group MedicationDispense(source src : MedicationDispenseR5, target tgt : MedicationDispenseR4) 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;
}

FML Conversion for MedicationDispense: R5 to R4B (Ready for Use/Trial Use)

/// 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;
}

Maps from MedicationDispense

FML Conversion for MedicationDispense: R4B to R5 (Ready for Use/Trial Use)

/// url = 'http://hl7.org/fhir/StructureMap/MedicationDispense4Bto5'
/// name = 'MedicationDispense4Bto5'
/// title = 'FML Conversion for MedicationDispense: R4B 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.3/StructureDefinition/MedicationDispense" alias MedicationDispenseR4B as source
uses "http://hl7.org/fhir/StructureDefinition/MedicationDispense" alias MedicationDispenseR5 as target

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

group MedicationDispense(source src : MedicationDispenseR4B, 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;
}

FML Conversion for MedicationDispense: R4 to R5 (Ready for Use/Trial Use)

/// 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;
}