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: R5 to R4

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

ConsentTransformsR5toR4

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

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

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

group Consent(source src : ConsentR5, target tgt : ConsentR4) extends DomainResource <<type+>> {
  src.identifier -> tgt.identifier;
  src.status as v -> tgt.status = translate(v, 'http://hl7.org/fhir/ConceptMap/Consent.status-R5toR4', 'code');
  src.category -> tgt.category;
  src.subject -> tgt.patient;
  src.date -> tgt.dateTime;
  src.grantee -> tgt.performer;
  src.sourceAttachment -> tgt.source;
  src.sourceReference -> tgt.source;
  src.regulatoryBasis -> tgt.policyRule;
  src.policyBasis as s ->  tgt.policy as t,  t.uri = s.url;
  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.documentType -> tgt.class;
  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-R5toR4', 'code');
  src.reference -> tgt.reference;
}