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
Official URL: http://hl7.org/fhir/StructureMap/Invoice5to4 | Version: 0.1.0 | |||
Standards status: Draft | Maturity Level: 1 | Computable Name: Invoice5to4 |
InvoiceTransformsR5toR4
/// url = 'http://hl7.org/fhir/StructureMap/Invoice5to4' /// name = 'Invoice5to4' /// title = 'Invoice Transforms: R5 to R4' /// status = 'active' uses "http://hl7.org/fhir/5.0/Invoice" alias InvoiceR5 as source uses "http://hl7.org/fhir/4.0/Invoice" alias InvoiceR4 as target imports "http://hl7.org/fhir/StructureMap/*5to4" group Invoice(source src : InvoiceR5, target tgt : InvoiceR4) extends DomainResource <<type+>> { src.identifier -> tgt.identifier; src.status as v -> tgt.status = translate(v, 'http://hl7.org/fhir/ConceptMap/Invoice.status-R5toR4', 'code'); src.cancelledReason -> tgt.cancelledReason; src.type -> tgt.type; src.subject -> tgt.subject; src.recipient -> tgt.recipient; src.date -> tgt.date; src.participant as s -> tgt.participant as t then InvoiceParticipant(s, t); src.issuer -> tgt.issuer; src.account -> tgt.account; src.lineItem as s -> tgt.lineItem as t then InvoiceLineItem(s, t); src.totalPriceComponent as s -> tgt.totalPriceComponent as t then { s.type -> t.type; s.code -> t.code; s.factor -> t.factor; s.amount -> t.amount; }; src.totalNet -> tgt.totalNet; src.totalGross -> tgt.totalGross; src.paymentTerms -> tgt.paymentTerms; src.note -> tgt.note; } group InvoiceParticipant(source src, target tgt) extends BackboneElement { src.role -> tgt.role; src.actor -> tgt.actor; } group InvoiceLineItem(source src, target tgt) extends BackboneElement { src.sequence -> tgt.sequence; src.chargeItem : Reference -> tgt.chargeItem; src.chargeItem : CodeableConcept -> tgt.chargeItem; src.priceComponent as s -> tgt.priceComponent as t then { s.type -> t.type; s.code -> t.code; s.factor -> t.factor; s.amount -> t.amount; }; }