Patient Master Identity Registry (PMIR), published by IHE IT Infrastructure Technical Committee. This guide is not an authorized publication; it is the continuous build for version 1.5.1-current built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/IHE/ITI.PMIR/ and changes regularly. 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:id [ fhir:v "ex-subscription-request"] ; #
fhir:meta [
( fhir:profile [
fhir:v "https://profiles.ihe.net/ITI/PMIR/StructureDefinition/IHE.PMIR.Subscription.Request"^^xsd:anyURI ;
fhir:link <https://profiles.ihe.net/ITI/PMIR/StructureDefinition/IHE.PMIR.Subscription.Request> ] )
] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Subscription ex-subscription-request</b></p><a name=\"ex-subscription-request\"> </a><a name=\"hcex-subscription-request\"> </a><a name=\"ex-subscription-request-en-US\"> </a><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 style=\"display: none\">-</td><td><b>Type</b></td><td><b>Endpoint</b></td><td><b>Payload</b></td></tr><tr><td style=\"display: none\">*</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:status [ fhir:v "requested"] ; #
fhir:contact ( [
fhir:system [ fhir:v "phone" ] ;
fhir:value [ fhir:v "+1-555-555-1212" ]
] ) ; #
fhir:reason [ fhir:v "To receive Patient changes."] ; #
fhir:criteria [ fhir:v "Patient"] ; #
fhir:channel [
fhir:type [ fhir:v "message" ] ;
fhir:endpoint [ fhir:v "http://example.org/pmir-message"^^xsd:anyURI ] ;
fhir:payload [ fhir:v "application/fhir+json" ]
] . #