PACIO Transitions of Care Implementation Guide
1.0.0 - STU 1 United States of America flag

PACIO Transitions of Care Implementation Guide, published by HL7 International / Patient Care. This guide is not an authorized publication; it is the continuous build for version 1.0.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/fhir-transitions-of-care-ig/ and changes regularly. See the Directory of published versions

: Example: Encounter - TTL Representation

Page standards status: Informative

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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/Encounter/BSJ-Encounter> a fhir:Encounter ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "BSJ-Encounter"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter|8.0.1" ;
       fhir:index 0 ;
       fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter|8.0.1>
     ]
  ] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Encounter BSJ-Encounter</b></p><a name=\"BSJ-Encounter\"> </a><a name=\"hcBSJ-Encounter\"> </a><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\"/><p style=\"margin-bottom: 0px\">Profile: <a href=\"http://hl7.org/fhir/us/core/STU8.0.1/StructureDefinition-us-core-encounter.html\">US Core Encounter Profile</a> version: 8.0.1</p></div><p><b>status</b>: Finished</p><p><b>class</b>: <a href=\"http://terminology.hl7.org/7.3.0/CodeSystem-v3-ActCode.html#v3-ActCode-HH\">ActCode: HH</a> (Home Health)</p><p><b>type</b>: <span title=\"Codes:{http://snomed.info/sct 50357006}\">Evaluation and management of patient at home (procedure)</span></p><p><b>subject</b>: <a href=\"Patient-Example-Smith-Johnson-Patient1.html\">Smith-Johnson, Betsy Female, DoB: 1958-11-01 ( http://hl7.org/fhir/sid/us-medicare#United States Medicare Number#1AA3D58WH16)</a></p><h3>Participants</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Individual</b></td></tr><tr><td style=\"display: none\">*</td><td><a href=\"PractitionerRole-Role-OT-JenCadbury.html\">PractitionerRole Occupational Therapist</a></td></tr></table><p><b>period</b>: 2024-01-18 --&gt; (ongoing)</p><h3>Locations</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Location</b></td></tr><tr><td style=\"display: none\">*</td><td><a href=\"Location-org-Loc-HomeHealth-Motown.html\">Location Motown Home Health Facility</a></td></tr></table></div>"
  ] ;
  fhir:Encounter.status [ fhir:value "finished"] ;
  fhir:Encounter.class [
     fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ActCode" ] ;
     fhir:Coding.code [ fhir:value "HH" ] ;
     fhir:Coding.display [ fhir:value "Home Health" ]
  ] ;
  fhir:Encounter.type [
     fhir:index 0 ;
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       a sct:50357006 ;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ] ;
       fhir:Coding.code [ fhir:value "50357006" ] ;
       fhir:Coding.display [ fhir:value "Evaluation and management of patient at home (procedure)" ]
     ]
  ] ;
  fhir:Encounter.subject [
     fhir:link <http://hl7.org/fhir/Patient/Example-Smith-Johnson-Patient1> ;
     fhir:Reference.reference [ fhir:value "Patient/Example-Smith-Johnson-Patient1" ]
  ] ;
  fhir:Encounter.participant [
     fhir:index 0 ;
     fhir:Encounter.participant.individual [
       fhir:link <http://hl7.org/fhir/PractitionerRole/Role-OT-JenCadbury> ;
       fhir:Reference.reference [ fhir:value "PractitionerRole/Role-OT-JenCadbury" ]
     ]
  ] ;
  fhir:Encounter.period [
     fhir:Period.start [ fhir:value "2024-01-18"^^xsd:date ]
  ] ;
  fhir:Encounter.location [
     fhir:index 0 ;
     fhir:Encounter.location.location [
       fhir:link <http://hl7.org/fhir/Location/org-Loc-HomeHealth-Motown> ;
       fhir:Reference.reference [ fhir:value "Location/org-Loc-HomeHealth-Motown" ]
     ]
  ] .

<http://hl7.org/fhir/Patient/Example-Smith-Johnson-Patient1> a fhir:Patient .

<http://hl7.org/fhir/PractitionerRole/Role-OT-JenCadbury> a fhir:PractitionerRole .

<http://hl7.org/fhir/Location/org-Loc-HomeHealth-Motown> a fhir:Location .

# - ontology header ------------------------------------------------------------

<http://hl7.org/fhir/Encounter/BSJ-Encounter.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Encounter/BSJ-Encounter.ttl> .