This page is part of the FHIR Core Extensions Registry (v5.1.0: Release 5.1) based on FHIR (HL7® FHIR® Standard) v5.0.0. This is the current published version in its permanent home (it will always be available at this URL). For a full list of available versions, see the Directory of published versions
Official URL: http://hl7.org/fhir/StructureMap/HealthcareService4Bto5 | Version: 5.1.0 | |||
Standards status: Trial-use | Maturity Level: 1 | Computable Name: HealthcareService4Bto5 |
FMLConversionforHealthcareServiceR4BtoR5
/// url = 'http://hl7.org/fhir/StructureMap/HealthcareService4Bto5' /// name = 'HealthcareService4Bto5' /// title = 'FML Conversion for HealthcareService: R4B to R5' /// status = 'active' uses "http://hl7.org/fhir/4.3/StructureDefinition/HealthcareService" alias HealthcareServiceR4B as source uses "http://hl7.org/fhir/StructureDefinition/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.offeredIn -> tgt.offeredIn; 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.contact -> tgt.contact; 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; }