FHIR Cross-Version Mapping Pack
0.1.0 - Ballot for Release 5.1.0 International flag

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

StructureMap: Consent Transforms: R4 to R5

Official URL: http://hl7.org/fhir/StructureMap/Consent4to5 Version: 0.1.0
Standards status: Draft Maturity Level: 1 Computable Name: Consent4to5

ConsentTransformsR4toR5

/// url = 'http://hl7.org/fhir/StructureMap/Consent4to5'
/// name = 'Consent4to5'
/// title = 'Consent Transforms: R4 to R5'
/// status = 'active'

uses "http://hl7.org/fhir/4.0/Consent" alias ConsentR4 as source
uses "http://hl7.org/fhir/5.0/Consent" alias ConsentR5 as target

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

group Consent(source src : ConsentR4, target tgt : ConsentR5) extends DomainResource <<type+>> {
  src.identifier -> tgt.identifier;
  src.status as v -> tgt.status = translate(v, 'http://hl7.org/fhir/ConceptMap/Consent.status-R4toR5', 'code');
  src.category -> tgt.category;
  src.patient -> tgt.subject;
  src.dateTime -> tgt.date;
  src.performer -> tgt.grantee;
  src.source : Attachment -> tgt.sourceAttachment;
  src.source : Reference -> tgt.sourceReference;
  src.policyRule -> tgt.regulatoryBasis;
  src.policy as s ->  tgt.policyBasis as t,  t.url = s.uri;
  src.verification as s -> tgt.verification as t then ConsentVerification(s, t);
  src.provision as s -> tgt.provision as t then ConsentProvision(s, t);
}

// group ConsentPolicyBasis(source src, target tgt) extends BackboneElement {
// src.reference -> tgt.reference;
// src.url -> tgt.url;
// }
group ConsentVerification(source src, target tgt) extends BackboneElement {
  src.verified -> tgt.verified;
  src.verifiedWith -> tgt.verifiedWith;
  src.verificationDate -> tgt.verificationDate;
}

group ConsentProvision(source src, target tgt) extends BackboneElement {
  src.period -> tgt.period;
  src.actor as s -> tgt.actor as t then ConsentProvisionActor(s, t);
  src.action -> tgt.action;
  src.securityLabel -> tgt.securityLabel;
  src.purpose -> tgt.purpose;
  src.class -> tgt.documentType;
  src.code -> tgt.code;
  src.dataPeriod -> tgt.dataPeriod;
  src.data as s -> tgt.data as t then ConsentProvisionData(s, t);
}

group ConsentProvisionActor(source src, target tgt) extends BackboneElement {
  src.role -> tgt.role;
  src.reference -> tgt.reference;
}

group ConsentProvisionData(source src, target tgt) extends BackboneElement {
  src.meaning as v -> tgt.meaning = translate(v, 'http://hl7.org/fhir/ConceptMap/Consent.provision.data.meaning-R4toR5', 'code');
  src.reference -> tgt.reference;
}