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: HealthcareService Transforms: R5 to R4B

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

HealthcareServiceTransformsR5toR4B

/// url = 'http://hl7.org/fhir/StructureMap/HealthcareService5to4B'
/// name = 'HealthcareService5to4B'
/// title = 'HealthcareService Transforms: R5 to R4B'
/// status = 'active'

uses "http://hl7.org/fhir/5.0/HealthcareService" alias HealthcareServiceR5 as source
uses "http://hl7.org/fhir/4.0/HealthcareService" alias HealthcareServiceR4B as target

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

group HealthcareService(source src : HealthcareServiceR5, target tgt : HealthcareServiceR4B) extends DomainResource <<type+>> {
  src.identifier -> tgt.identifier;
  src.active -> tgt.active;
  src.providedBy -> tgt.providedBy;
  src.category -> tgt.category;
  src.type -> tgt.type;
  src.specialty -> tgt.specialty;
  src.location -> tgt.location;
  src.name -> tgt.name;
  src.comment -> tgt.comment;
  src.extraDetails -> tgt.extraDetails;
  src.photo -> tgt.photo;
  src.coverageArea -> tgt.coverageArea;
  src.serviceProvisionCode -> tgt.serviceProvisionCode;
  src.eligibility as s -> tgt.eligibility as t then HealthcareServiceEligibility(s, t);
  src.program -> tgt.program;
  src.characteristic -> tgt.characteristic;
  src.communication -> tgt.communication;
  src.referralMethod -> tgt.referralMethod;
  src.appointmentRequired -> tgt.appointmentRequired;
  src.availability as s -> tgt.availableTime as t then HealthcareServiceAvailabilityAvailableTime(s, t) "availableTime";
  src.availability as s -> tgt.notAvailable as t then HealthcareServiceAvailabilityNotAvailableTime(s, t) "notAvailableTime";
  src.endpoint -> tgt.endpoint;
}

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

group HealthcareServiceAvailabilityAvailableTime(source src, target tgt) extends BackboneElement {
  src.availableTime as s ->  tgt.daysOfWeek as t,  t = s.daysOfWeek;
  src.availableTime as s ->  tgt.allDay as t,  t = s.allDay;
  src.availableTime as s ->  tgt.availableStartTime as t,  t = s.availableStartTime;
  src.availableTime as s ->  tgt.availableEndTime as t,  t = s.availableEndTime;
}

group HealthcareServiceAvailabilityNotAvailableTime(source src, target tgt) extends BackboneElement {
  src.notAvailableTime as s ->  tgt.description as t,  t = s.description;
  src.notAvailableTime as s ->  tgt.during as t,  t = s.during;
}