HL7 FHIR Implementation Guide: Example IG Release 1 - US Realm | STU1, published by Jembi Health Systems. This guide is not an authorized publication; it is the continuous build for version 0.1.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/openhie/Training-Solution-1 and changes regularly. See the Directory of published versions
: HIV Episode Of Care - 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:EpisodeOfCare ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "HIVEpisodeOfCareExample"] ; #
fhir:meta [
( fhir:profile [
fhir:v "http://openhie.org/fhir/training-solution-1/StructureDefinition/hiv-episode-of-care"^^xsd:anyURI ;
fhir:link <http://openhie.org/fhir/training-solution-1/StructureDefinition/hiv-episode-of-care> ] )
] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: EpisodeOfCare</b><a name=\"HIVEpisodeOfCareExample\"> </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 EpisodeOfCare "HIVEpisodeOfCareExample" </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-hiv-episode-of-care.html\">Patient Enrollment Type</a></p></div><p><b>identifier</b>: Enrollment identifier: abc123</p><p><b>status</b>: active</p><h3>Diagnoses</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Condition</b></td></tr><tr><td style=\"display: none\">*</td><td><a href=\"Condition-HIVDiagnosisExample.html\">Condition/HIVDiagnosisExample</a></td></tr></table><p><b>patient</b>: <a href=\"Patient-HIVPatientExample.html\">Patient/HIVPatientExample</a> " SMITH"</p><p><b>managingOrganization</b>: <a href=\"Organization-HIVOrganizationExample.html\">Organization/HIVOrganizationExample</a> "HIV Test Services Health Facility"</p><p><b>period</b>: 2021-05-18 --> 2021-05-18</p></div>"
] ; #
fhir:identifier ( [
fhir:type [
( fhir:coding [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ;
fhir:code [ fhir:v "PI" ] ;
fhir:display [ fhir:v "Patient internal identifier" ] ] ) ;
fhir:text [ fhir:v "Enrollment identifier" ] ] ;
fhir:system [ fhir:v "http://openhie.org/fhir/training-solution-1/identifier/enrollment-unique-id"^^xsd:anyURI ] ;
fhir:value [ fhir:v "abc123" ]
] ) ; #
fhir:status [ fhir:v "active"] ; #
fhir:diagnosis ( [
fhir:condition [
fhir:reference [ fhir:v "Condition/HIVDiagnosisExample" ] ]
] ) ; #
fhir:patient [
fhir:reference [ fhir:v "Patient/HIVPatientExample" ]
] ; #
fhir:managingOrganization [
fhir:reference [ fhir:v "Organization/HIVOrganizationExample" ]
] ; #
fhir:period [
fhir:start [ fhir:v "2021-05-18"^^xsd:date ] ;
fhir:end [ fhir:v "2021-05-18"^^xsd:date ]
] . #