Subscriptions R5 Backport
0.1.0 - ballot

This page is part of the Subscriptions R5 Backport (v0.1.0: STU 1 Ballot 1) based on FHIR R4. The current version which supercedes this version is 1.0.0. For a full list of available versions, see the Directory of published versions

: Backported Notification: Status - TTL Representation

Raw ttl | Download


@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

 a fhir:Parameters;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "notification-status"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/uv/subscriptions-backport/StructureDefinition/backport-subscriptionstatus";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/uv/subscriptions-backport/StructureDefinition/backport-subscriptionstatus>     ]
  ];
  fhir:Parameters.parameter [
     fhir:index 0;
     fhir:Parameters.parameter.name [ fhir:value "subscription" ];
     fhir:Parameters.parameter.valueReference [
       fhir:link <https://example.org/fhir/r4/Subscription/admission>;
       fhir:Reference.reference [ fhir:value "https://example.org/fhir/r4/Subscription/admission" ]     ]
  ], [
     fhir:index 1;
     fhir:Parameters.parameter.name [ fhir:value "topic" ];
     fhir:Parameters.parameter.valueCanonical [
       fhir:value "http://hl7.org/SubscriptionTopic/admission";
       fhir:link <http://hl7.org/SubscriptionTopic/admission>     ]
  ], [
     fhir:index 2;
     fhir:Parameters.parameter.name [ fhir:value "type" ];
     fhir:Parameters.parameter.valueCode [ fhir:value "event-notification" ]
  ], [
     fhir:index 3;
     fhir:Parameters.parameter.name [ fhir:value "status" ];
     fhir:Parameters.parameter.valueCode [ fhir:value "active" ]
  ], [
     fhir:index 4;
     fhir:Parameters.parameter.name [ fhir:value "events-since-subscription-start" ];
     fhir:Parameters.parameter.valueUnsignedInt [ fhir:value "310"^^xsd:nonNegativeInteger ]
  ], [
     fhir:index 5;
     fhir:Parameters.parameter.name [ fhir:value "events-in-notification" ];
     fhir:Parameters.parameter.valueUnsignedInt [ fhir:value "1"^^xsd:nonNegativeInteger ]
  ].

# - ontology header ------------------------------------------------------------

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.