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
FHIR Infrastructure Work Group | Maturity Level: N/A | Standards Status: Informative | Security Category: N/A | Compartments: N/A |
Following are maps for converting between the equivalent R4B resource and this R5 resource.
/// url = 'http://hl7.org/fhir/StructureMap/SubscriptionStatus5to4B' /// name = 'SubscriptionStatus5to4B' /// title = 'FML Conversion for SubscriptionStatus: R5 to R4B' /// status = 'active' conceptmap "SubscriptionNotificationType" { prefix s = "http://hl7.org/fhir/subscription-notification-type" prefix t = "http://hl7.org/fhir/4.3/subscription-notification-type" s:handshake - t:handshake s:heartbeat - t:heartbeat s:"event-notification" - t:"event-notification" s:"query-status" - t:"query-status" s:"query-event" - t:"query-event" } conceptmap "SubscriptionStatus" { prefix s = "http://hl7.org/fhir/subscription-status" prefix t = "http://hl7.org/fhir/4.3/subscription-status" s:requested - t:requested s:active - t:active s:error - t:error s:off - t:off } uses "http://hl7.org/fhir/StructureDefinition/SubscriptionStatus" alias SubscriptionStatusR5 as source uses "http://hl7.org/fhir/4.3/StructureDefinition/SubscriptionStatus" alias SubscriptionStatusR4B as target imports "http://hl7.org/fhir/StructureMap/*5to4B" group SubscriptionStatus(source src : SubscriptionStatusR5, target tgt : SubscriptionStatusR4B) extends DomainResource <<type+>> { src.status as v -> tgt.status = translate(v, '#SubscriptionStatus', 'code'); src.type as v -> tgt.type = translate(v, '#SubscriptionNotificationType', 'code'); src.eventsSinceSubscriptionStart -> tgt.eventsSinceSubscriptionStart; src.notificationEvent as s -> tgt.notificationEvent as t then SubscriptionStatusNotificationEvent(s, t); src.subscription -> tgt.subscription; src.topic -> tgt.topic; src.error -> tgt.error; } group SubscriptionStatusNotificationEvent(source src, target tgt) extends BackboneElement { src.eventNumber -> tgt.eventNumber; src.timestamp -> tgt.timestamp; src.focus -> tgt.focus; src.additionalContext -> tgt.additionalContext; }
/// url = 'http://hl7.org/fhir/StructureMap/SubscriptionStatus4Bto5' /// name = 'SubscriptionStatus4Bto5' /// title = 'FML Conversion for SubscriptionStatus: R4B to R5' /// status = 'active' conceptmap "SubscriptionNotificationType" { prefix s = "http://hl7.org/fhir/4.3/subscription-notification-type" prefix t = "http://hl7.org/fhir/subscription-notification-type" s:handshake - t:handshake s:heartbeat - t:heartbeat s:"event-notification" - t:"event-notification" s:"query-status" - t:"query-status" s:"query-event" - t:"query-event" } conceptmap "SubscriptionStatus" { prefix s = "http://hl7.org/fhir/4.3/subscription-status" prefix t = "http://hl7.org/fhir/subscription-status" s:requested - t:requested s:active - t:active s:error - t:error s:off - t:off } uses "http://hl7.org/fhir/4.3/StructureDefinition/SubscriptionStatus" alias SubscriptionStatusR4B as source uses "http://hl7.org/fhir/StructureDefinition/SubscriptionStatus" alias SubscriptionStatusR5 as target imports "http://hl7.org/fhir/StructureMap/*4Bto5" group SubscriptionStatus(source src : SubscriptionStatusR4B, target tgt : SubscriptionStatusR5) extends DomainResource <<type+>> { src.status as v -> tgt.status = translate(v, '#SubscriptionStatus', 'code'); src.type as v -> tgt.type = translate(v, '#SubscriptionNotificationType', 'code'); src.eventsSinceSubscriptionStart : string as s -> tgt.eventsSinceSubscriptionStart; src.notificationEvent as s -> tgt.notificationEvent as t then SubscriptionStatusNotificationEvent(s, t); src.subscription -> tgt.subscription; src.topic -> tgt.topic; src.error -> tgt.error; } group SubscriptionStatusNotificationEvent(source src, target tgt) extends BackboneElement { src.eventNumber : string -> tgt.eventNumber; src.timestamp -> tgt.timestamp; src.focus -> tgt.focus; src.additionalContext -> tgt.additionalContext; }