Patient Master Identity Registry (PMIR)
1.5.0 - Trial-Implementation International flag

This page is part of the IHE Patient Master Identity Registry (PMIR) (v1.5.0: Trial Implementation) based on FHIR R4. This is the current published version. For a full list of available versions, see the Directory of published versions

: PMIR Example Subscription Request - 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:Subscription;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "ex-subscription-request"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://profiles.ihe.net/ITI/PMIR/StructureDefinition/IHE.PMIR.Subscription.Request";
       fhir:index 0;
       fhir:link <https://profiles.ihe.net/ITI/PMIR/StructureDefinition/IHE.PMIR.Subscription.Request>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: Subscription</b></p><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Resource Subscription \"ex-subscription-request\" </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-IHE.PMIR.Subscription.Request.html\">IHE Patient Master Identity Registry Subscription request</a></p></div><p><b>status</b>: requested</p><p><b>contact</b>: <a href=\"tel:+1-555-555-1212\">+1-555-555-1212</a></p><p><b>reason</b>: To receive Patient changes.</p><p><b>criteria</b>: Patient</p><h3>Channels</h3><table class=\"grid\"><tr><td>-</td><td><b>Type</b></td><td><b>Endpoint</b></td><td><b>Payload</b></td></tr><tr><td>*</td><td>message</td><td><a href=\"http://example.org/pmir-message\">http://example.org/pmir-message</a></td><td>application/fhir+json</td></tr></table></div>"
  ];
  fhir:Subscription.status [ fhir:value "requested"];
  fhir:Subscription.contact [
     fhir:index 0;
     fhir:ContactPoint.system [ fhir:value "phone" ];
     fhir:ContactPoint.value [ fhir:value "+1-555-555-1212" ]
  ];
  fhir:Subscription.reason [ fhir:value "To receive Patient changes."];
  fhir:Subscription.criteria [ fhir:value "Patient"];
  fhir:Subscription.channel [
     fhir:Subscription.channel.type [ fhir:value "message" ];
     fhir:Subscription.channel.endpoint [ fhir:value "http://example.org/pmir-message" ];
     fhir:Subscription.channel.payload [ fhir:value "application/fhir+json" ]
  ].

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

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