This page is part of the FHIR Specification (v4.2.0: R5 Preview #1). 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 a Subscription notification with payload: full-resource
@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 -------------------------------------------------------------------
<http://hl7.org/fhir/Bundle/notification-full-resource> a fhir:Bundle;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "notification-full-resource"];
fhir:Resource.meta [
fhir:Element.extension [
fhir:index 0;
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/subscription-event-count" ];
fhir:Extension.valueUnsignedInt [ fhir:value "3"^^xsd:nonNegativeInteger ]
], [
fhir:index 1;
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/bundle-event-count" ];
fhir:Extension.valueUnsignedInt [ fhir:value "1"^^xsd:nonNegativeInteger ]
], [
fhir:index 2;
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/subscription-status" ];
fhir:Extension.valueCode [ fhir:value "active" ]
], [
fhir:index 3;
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/subscription-topic-url" ];
fhir:Extension.valueUrl [ fhir:value "https://example.org/baseR4/Topic/admission" ]
], [
fhir:index 4;
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/subscription-url" ];
fhir:Extension.valueUrl [ fhir:value "https://example.org/Subscription/cb2dce51-a1f5-40b4-a98b-c934eae368e8" ]
]
];
fhir:Bundle.type [ fhir:value "history"];
fhir:Bundle.timestamp [ fhir:value "2019-08-07T10:24:13.1882432-05:00"^^xsd:dateTime];
fhir:Bundle.entry [
fhir:index 0;
fhir:Bundle.entry.fullUrl [ fhir:value "https://example.org/baseR4/Encounter/3" ];
fhir:Bundle.entry.resource <https://example.org/baseR4/Encounter/3>;
fhir:Bundle.entry.request [
fhir:Bundle.entry.request.method [ fhir:value "PUT" ];
fhir:Bundle.entry.request.url [ fhir:value "Encounter/3" ]
];
fhir:Bundle.entry.response [
fhir:Bundle.entry.response.status [ fhir:value "201" ]
]
] .
<https://example.org/baseR4/Encounter/3> a fhir:Encounter;
fhir:Resource.id [ fhir:value "3"];
fhir:Resource.meta [
fhir:Meta.versionId [ fhir:value "1" ];
fhir:Meta.lastUpdated [ fhir:value "2019-08-07T10:49:22Z"^^xsd:dateTime ]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: 3</p><p><b>meta</b>: </p><p><b>status</b>: in-progress</p><p><b>class</b>: virtual (Details: http://terminology.hl7.org/CodeSystem/v3-ActCode code VR = 'virtual', stated as 'virtual')</p><p><b>subject</b>: <a>Patient/123</a></p></div>"
];
fhir:Encounter.status [ fhir:value "in-progress"];
fhir:Encounter.class [
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ActCode" ];
fhir:Coding.code [ fhir:value "VR" ];
fhir:Coding.display [ fhir:value "virtual" ]
];
fhir:Encounter.subject [
fhir:link <http://hl7.org/fhir/Patient/123>;
fhir:Reference.reference [ fhir:value "Patient/123" ]
] .
<http://hl7.org/fhir/Patient/123> a fhir:Patient .
# - ontology header ------------------------------------------------------------
<http://hl7.org/fhir/Bundle/notification-full-resource.ttl> a owl:Ontology;
owl:imports fhir:fhir.ttl;
owl:versionIRI <http://build.fhir.org/Bundle/notification-full-resource.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.