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/Provenance4to5 | Version: 1.0.0 | |||
Standards status: Trial-use | Maturity Level: 1 | Computable Name: Provenance4to5 |
FMLConversionforProvenanceR4toR5
/// url = 'http://hl7.org/fhir/StructureMap/Provenance4to5' /// name = 'Provenance4to5' /// title = 'FML Conversion for Provenance: R4 to R5' /// status = 'active' conceptmap "ProvenanceEntityRole" { prefix s = "http://hl7.org/fhir/4.0/provenance-entity-role" prefix t = "http://hl7.org/fhir/provenance-entity-role" s:revision - t:revision s:quotation - t:quotation s:source - t:source s:removal - t:removal } uses "http://hl7.org/fhir/4.0/StructureDefinition/Provenance" alias ProvenanceR4 as source uses "http://hl7.org/fhir/StructureDefinition/Provenance" alias ProvenanceR5 as target imports "http://hl7.org/fhir/StructureMap/*4to5" group Provenance(source src : ProvenanceR4, target tgt : ProvenanceR5) extends DomainResource <<type+>> { src.target -> tgt.target; src.occurred : Period -> tgt.occurred; src.occurred : dateTime -> tgt.occurred; src.recorded -> tgt.recorded; src.policy -> tgt.policy; src.location -> tgt.location; src.activity -> tgt.activity; // src.authorization -> tgt.authorization; src.agent as s -> tgt.agent as t then ProvenanceAgent(s, t); // src.basedOn -> tgt.basedOn; src.entity as s -> tgt.entity as t then ProvenanceEntity(s, t); src.signature -> tgt.signature; } group ProvenanceAgent(source src, target tgt) extends BackboneElement { src.type -> tgt.type; src.role -> tgt.role; src.who -> tgt.who; src.onBehalfOf -> tgt.onBehalfOf; } group ProvenanceEntity(source src, target tgt) extends BackboneElement { src.role as v -> tgt.role = translate(v, '#ProvenanceEntityRole', 'code'); src.what -> tgt.what; }