This
page
is
part
of
the
FHIR
Specification
(v4.0.1:
R4
-
Mixed
Normative
and
STU
)
in
it's
permanent
home
(it
will
always
be
available
at
this
URL).
(v5.0.0-snapshot1:
R5
Snapshot
#1).
The
current
version
which
supercedes
this
version
is
5.0.0
.
For
a
full
list
of
available
versions,
see
the
Directory
of
published
versions
.
Page
versions:
R5
R4B
R4
R3
Patient
Administration
Work
Group
|
Maturity Level : N/A | Standards Status : Informative | Security Category : Patient | Compartments : Device , Patient , Practitioner |
R3 : R4 Conversion maps for Account.
Functional status for this map: 2 tests that all execute ok. 2 fail round-trip testing and all r3 resources are valid. ( see documentation)
map "http://hl7.org/fhir/StructureMap/Account3to4" = "R3 to R4 Conversions for Account"
uses "http://hl7.org/fhir/3.0/StructureDefinition/Account" alias AccountR3 as source
uses "http://hl7.org/fhir/StructureDefinition/Account" alias Account as target
imports "http://hl7.org/fhir/StructureMap/*3to4"
group Account(source src : AccountR3, target tgt : Account) extends DomainResource <<type+>> {
src.identifier -> tgt.identifier;
src.status -> tgt.status;
src.type -> tgt.type;
src.name -> tgt.name;
src.subject -> tgt.subject;
src.period -> tgt.servicePeriod;
src.coverage as s -> tgt.coverage as t then AccountCoverage(s, t);
src.owner -> tgt.owner;
src.description -> tgt.description;
src.guarantor as s -> tgt.guarantor as t then AccountGuarantor(s, t);
src.partOf -> tgt.partOf;
}
group AccountCoverage(source src, target tgt) extends BackboneElement {
src.coverage -> tgt.coverage;
src.priority -> tgt.priority;
}
group AccountGuarantor(source src, target tgt) extends BackboneElement {
src.party -> tgt.party;
src.onHold -> tgt.onHold;
src.period -> tgt.period;
}
map "http://hl7.org/fhir/StructureMap/Account4to3" = "R4 to R3 Conversion for Account" uses "http://hl7.org/fhir/StructureDefinition/Account" alias Account as source uses "http://hl7.org/fhir/3.0/StructureDefinition/Account" alias AccountR3 as target imports "http://hl7.org/fhir/StructureMap/*4to3"group Account(source src : AccountR3, target tgt : Account) extends DomainResource <<type+>> {group Account(source src : Account, target tgt : AccountR3) extends DomainResource <<type+>> { src.identifier -> tgt.identifier; src.status -> tgt.status; src.type -> tgt.type; src.name -> tgt.name; src.subject -> tgt.subject; src.servicePeriod -> tgt.period; src.coverage as s -> tgt.coverage as t then AccountCoverage(s, t); src.owner -> tgt.owner; src.description -> tgt.description; src.guarantor as s -> tgt.guarantor as t then AccountGuarantor(s, t); src.partOf -> tgt.partOf; } group AccountCoverage(source src, target tgt) extends BackboneElement { src.coverage -> tgt.coverage; src.priority -> tgt.priority; } group AccountGuarantor(source src, target tgt) extends BackboneElement { src.party -> tgt.party; src.onHold -> tgt.onHold; src.period -> tgt.period; }