Starter FHIR Implementation Guide, published by Jembi Health Systems. This guide is not an authorized publication; it is the continuous build for version 1.0.1 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/jembi/Starter-FHIR-IG/ and changes regularly. See the Directory of published versions
: Encounter - Referencing a General Patient - 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:Encounter ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "GeneralEncounterExample"] ; #
fhir:meta [
( fhir:profile [
fhir:v "http://jembi.org/fhir/StructureDefinition/target-facility-encounter"^^xsd:anyURI ;
fhir:link <http://jembi.org/fhir/StructureDefinition/target-facility-encounter> ] )
] ; #
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: Encounter GeneralEncounterExample</b></p><a name=\"GeneralEncounterExample\"> </a><a name=\"hcGeneralEncounterExample\"> </a><a name=\"GeneralEncounterExample-en-US\"> </a><p><b>status</b>: Finished</p><p><b>class</b>: <a href=\"http://terminology.hl7.org/6.0.2/CodeSystem-v3-ActCode.html#v3-ActCode-AMB\">ActCode AMB</a>: ambulatory</p><p><b>subject</b>: <a href=\"Patient-PatientExample1.html\">John Doe (no stated gender), DoB Unknown ( http://jembi.org/fhir/hiv/identifier/MRN#MRN-12345-12-1)</a></p><p><b>period</b>: 2012-12-09 --> 2012-12-09</p><p><b>serviceProvider</b>: <a href=\"Organization-CurrentServiceProviderExample1.html\">Organization Facility A</a></p></div>"
] ; #
fhir:status [ fhir:v "finished"] ; #
fhir:class [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-ActCode"^^xsd:anyURI ] ;
fhir:code [ fhir:v "AMB" ]
] ; #
fhir:subject [
fhir:reference [ fhir:v "Patient/PatientExample1" ]
] ; #
fhir:period [
fhir:start [ fhir:v "2012-12-09"^^xsd:date ] ;
fhir:end [ fhir:v "2012-12-09"^^xsd:date ]
] ; #
fhir:serviceProvider [
fhir:reference [ fhir:v "Organization/CurrentServiceProviderExample1" ]
] . #