This page is part of the FHIR Specification (v5.0.0-ballot: FHIR R5 Ballot Preview). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions
FHIR Infrastructure Work Group | Maturity Level: N/A | Standards Status: Informative | Compartments: Not linked to any defined compartments |
Raw Turtle (+ also see Turtle/RDF Format Specification)
Example of subscription for beginning of a clinical encounter
@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 "admission"]; 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><a name=\"admission\"> </a></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 "admission" </p></div><p><b>name</b>: AdmissionExample</p><p><b>status</b>: active</p><p><b>topic</b>: <a href=\"http://example.org/R5/SubscriptionTopic/admission\">http://example.org/R5/SubscriptionTopic/admission</a></p><p><b>end</b>: 07/08/2019 9:15:18 PM</p><p><b>reason</b>: subscription for beginning of a clinical encounter for patient 123</p><h3>FilterBies</h3><table class=\"grid\"><tr><td>-</td><td><b>FilterParameter</b></td><td><b>Value</b></td></tr><tr><td>*</td><td>patient</td><td>Patient/123</td></tr></table><p><b>channelType</b>: rest-hook (Details: [not stated] code rest-hook = 'rest-hook', stated as 'null')</p><p><b>endpoint</b>: <a href=\"https://example.org/Endpoints/P123\">https://example.org/Endpoints/P123</a></p><p><b>header</b>: Authorization: Bearer secret-token-abc-123</p><p><b>heartbeatPeriod</b>: 60</p><p><b>timeout</b>: 5</p><p><b>contentType</b>: application/fhir+json</p><p><b>content</b>: id-only</p><p><b>maxCount</b>: 100</p></div>" ]; fhir:Subscription.name [ fhir:value "AdmissionExample"]; fhir:Subscription.status [ fhir:value "active"]; fhir:Subscription.topic [ fhir:value "http://example.org/R5/SubscriptionTopic/admission"; fhir:link <http://example.org/R5/SubscriptionTopic/admission> ]; fhir:Subscription.end [ fhir:value "2019-08-07T11:15:18Z"^^xsd:dateTime]; fhir:Subscription.reason [ fhir:value "subscription for beginning of a clinical encounter for patient 123"]; fhir:Subscription.filterBy [ fhir:index 0; fhir:Subscription.filterBy.filterParameter [ fhir:value "patient" ]; fhir:Subscription.filterBy.value [ fhir:value "Patient/123" ] ]; fhir:Subscription.channelType [ fhir:Coding.code [ fhir:value "rest-hook" ] ]; fhir:Subscription.endpoint [ fhir:value "https://example.org/Endpoints/P123"]; fhir:Subscription.header [ fhir:value "Authorization: Bearer secret-token-abc-123"; fhir:index 0 ]; fhir:Subscription.heartbeatPeriod [ fhir:value "60"^^xsd:nonNegativeInteger]; fhir:Subscription.timeout [ fhir:value "5"^^xsd:nonNegativeInteger]; fhir:Subscription.contentType [ fhir:value "application/fhir+json"]; fhir:Subscription.content [ fhir:value "id-only"]; fhir:Subscription.maxCount [ fhir:value "100"^^xsd:positiveInteger]] . # - ontology header ------------------------------------------------------------ [a owl:Ontology; owl:imports fhir:fhir.ttl] . # -------------------------------------------------------------------------------------
Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.