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: EligibilityResponse Transforms: R3 to R4

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

EligibilityResponseTransformsR3toR4

/// url = 'http://hl7.org/fhir/StructureMap/EligibilityResponse3to4'
/// name = 'EligibilityResponse3to4'
/// title = 'EligibilityResponse Transforms: R3 to R4'
/// status = 'active'

uses "http://hl7.org/fhir/3.0/EligibilityResponse" alias EligibilityResponseR3 as source
uses "http://hl7.org/fhir/4.0/CoverageEligibilityResponse" alias EligibilityResponse as target

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

group EligibilityResponse(source src : EligibilityResponseR3, target tgt : CoverageEligibilityResponse) extends DomainResource <<type+>> {
  src.identifier -> tgt.identifier;
  src.status -> tgt.status;
  src.patient -> tgt.patient;
  src.serviced -> tgt.serviced;
  src.created -> tgt.created;
  src.requestProvider -> tgt.requestor;
  src.request -> tgt.request;
  src.outcome as vs then {
    vs.coding as c where code in ('complete' | 'error' | 'partial') then {
      c.code -> tgt.outcome;
    };
  };
  src.disposition -> tgt.disposition;
  src.insurer -> tgt.insurer;
  src.insurance as s -> tgt.insurance as t then EligibilityResponseInsurance(s, t);
  src.preAuthRef -> tgt.preAuthRef;
  src.form -> tgt.form;
  src.error as s -> tgt.error as t then EligibilityResponseError(s, t);
}

group EligibilityResponseInsurance(source src, target tgt) extends BackboneElement {
  src.coverage -> tgt.coverage;
  src.contract -> tgt.contract;
  src where (src.inforce = true) -> tgt.inforce = 'true' "inforce";
  src.detail as s -> tgt.detail as t then EligibilityResponseInsuranceDetail(s, t);
}

group EligibilityResponseInsuranceDetail(source src, target tgt) extends BackboneElement {
  src.category -> tgt.category;
  src.service -> tgt.service;
  src.modifier -> tgt.modifier;
  src.provider -> tgt.provider;
  src.excluded -> tgt.excluded;
  src.name -> tgt.name;
  src.description -> tgt.description;
  src.network -> tgt.network;
  src.unit -> tgt.unit;
  src.term -> tgt.term;
  src.benefit as s -> tgt.benefit as t then EligibilityResponseInsuranceDetailBenefit(s, t);
  src.authorizationRequired -> tgt.authorizationRequired;
  src.authorizationSupporting -> tgt.authorizationSupporting;
  src.authorizationUrl -> tgt.authorizationUrl;
}

group EligibilityResponseError(source src, target tgt) extends BackboneElement {
  src.code -> tgt.code;
}