@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<https://profiles.ihe.net/ITI/DSUBm/Parameters/ex-SubscriptionStatus-NotificationEvent> a fhir:Parameters ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "ex-SubscriptionStatus-NotificationEvent"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "https://profiles.ihe.net/ITI/DSUBm/StructureDefinition/IHE.DSUBm.SubscriptionStatus-Event"^^xsd:anyURI ;
       fhir:link <https://profiles.ihe.net/ITI/DSUBm/StructureDefinition/IHE.DSUBm.SubscriptionStatus-Event>
     ] )
  ] ; # 
  fhir:parameter ( [
     fhir:name [ fhir:v "subscription" ] ;
     fhir:value [
       a fhir:Reference ;
       fhir:link <https://example.org/fhir/Subscription/ex-Subscription-DocumentReference-PatientDependent> ;
       fhir:reference [ fhir:v "https://example.org/fhir/Subscription/ex-Subscription-DocumentReference-PatientDependent" ]
     ]
  ] [
     fhir:name [ fhir:v "status" ] ;
     fhir:value [
       a fhir:code ;
       fhir:v "active"
     ]
  ] [
     fhir:name [ fhir:v "type" ] ;
     fhir:value [
       a fhir:code ;
       fhir:v "event-notification"
     ]
  ] [
     fhir:name [ fhir:v "events-since-subscription-start" ] ;
     fhir:value [
       a fhir:string ;
       fhir:v "1"
     ]
  ] [
     fhir:name [ fhir:v "notification-event" ] ;
     fhir:part ( [
       fhir:name [ fhir:v "event-number" ] ;
       fhir:value [
         a fhir:string ;
         fhir:v "1"
       ]
     ] [
       fhir:name [ fhir:v "timestamp" ] ;
       fhir:value [
         a fhir:instant ;
         fhir:v "2023-01-01T12:00:00.1882432-05:00"^^xsd:dateTime
       ]
     ] )
  ] [
     fhir:name [ fhir:v "topic" ] ;
     fhir:value [
       a fhir:canonical ;
       fhir:v "https://profiles.ihe.net/ITI/DSUBm/SubscriptionTopic/DSUBm-SubscriptionTopic-DocumentReference-PatientDependent"^^xsd:anyURI ;
       fhir:link <https://profiles.ihe.net/ITI/DSUBm/SubscriptionTopic/DSUBm-SubscriptionTopic-DocumentReference-PatientDependent>
     ]
  ] ) . # 

# -------------------------------------------------------------------------------------

