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

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

HealthcareServiceTransformsR4BtoR5

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

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

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

group HealthcareService(source src : HealthcareServiceR4B, target tgt : HealthcareServiceR5) 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.availableTime : BackboneElement as s -> tgt.availability as t then HealthcareServiceAvailabilityAvailableTime(s, t);
  src.notAvailable : BackboneElement as s -> tgt.availability = create('Availability') 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.daysOfWeek as s ->  tgt.availableTime as t,  t.daysOfWeek = s;
  src.allDay : boolean as s ->  tgt.availableTime as t,  t.allDay = s;
  src.availableStartTime : time as s ->  tgt.availableTime as t,  t.availableStartTime = s;
  src.availableEndTime : time as s ->  tgt.availableTime as t,  t.availableEndTime = s;
}

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