Electronic Long-Term Services and Supports (eLTSS) Release 1 - US Realm

This page is part of the electronic Long-Term Services and Supports Implementation Guide (v1.0.0: STU 1) based on FHIR R4. This is the current published version in it's permanent home (it will always be available at this URL). For a full list of available versions, see the Directory of published versions

eLTSS Patient Example - TTL Representation

(back to narrative)

Raw ttl

@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:Bundle;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "patient-patient1"];
  fhir:Bundle.type [ fhir:value "collection"];
  fhir:Bundle.entry [
     fhir:index 0;
     fhir:Bundle.entry.resource [
       a fhir:Patient;
       fhir:Resource.id [ fhir:value "patient1" ];
       fhir:Resource.meta [
         fhir:Meta.profile [
           fhir:value "http://hl7.org/fhir/us/eltss/StructureDefinition/Patient-eltss";
           fhir:index 0;
           fhir:link <http://hl7.org/fhir/us/eltss/StructureDefinition/Patient-eltss>         ]       ];
       fhir:DomainResource.text [
         fhir:Narrative.status [ fhir:value "generated" ];
         fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n            <p><b>Person Name:</b> Sally Person</p>\n            <p><b>Person Identifier | Type:</b> 123456ABC | MRN</p>\n            <p><b>Person Phone:</b> (404) 555 1212</p>\n            <p><b>Person Date of Birth:</b> 1935-05-01</p>\n            <p><b>Person Address:</b> 2222 Peachtree Street, Atlanta GA, 30318</p>\n            <p><b>Emergency Contact Name:</b> Jane Daughter</p>\n            <p><b>Emergency Contact Relationship:</b> daughter</p>\n            <p><b>Emergency Contact Phone Number:</b> (770) 224 1544</p>\n          </div>"       ];
       fhir:Patient.identifier [
         fhir:index 0;
         fhir:Identifier.type [
           fhir:CodeableConcept.coding [
             fhir:index 0;
             fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0203" ];
             fhir:Coding.code [ fhir:value "MR" ]           ];
           fhir:CodeableConcept.text [ fhir:value "MRN" ]         ];
         fhir:Identifier.system [ fhir:value "http://www.example.org/Codesystem" ];
         fhir:Identifier.value [ fhir:value "123456ABC" ]       ];
       fhir:Patient.name [
         fhir:index 0;
         fhir:HumanName.text [ fhir:value "Sally Person" ];
         fhir:HumanName.family [ fhir:value "Person" ];
         fhir:HumanName.given [
           fhir:value "Sally";
           fhir:index 0         ]       ];
       fhir:Patient.telecom [
         fhir:index 0;
         fhir:ContactPoint.system [ fhir:value "phone" ];
         fhir:ContactPoint.value [ fhir:value "(404) 555 1212" ]       ];
       fhir:Patient.gender [ fhir:value "female" ];
       fhir:Patient.birthDate [ fhir:value "1935-05-01"^^xsd:date ];
       fhir:Patient.address [
         fhir:index 0;
         fhir:Address.text [ fhir:value "2222 Peachtree Street, Atlanta GA, 30318" ];
         fhir:Address.line [
           fhir:value "2222 Peachtree Street";
           fhir:index 0         ];
         fhir:Address.city [ fhir:value "Atlanta" ];
         fhir:Address.district [ fhir:value "Fulton" ];
         fhir:Address.state [ fhir:value "GA" ];
         fhir:Address.postalCode [ fhir:value "30318" ]       ];
       fhir:Patient.contact [
         fhir:index 0;
         fhir:Patient.contact.relationship [
           fhir:index 0;
           fhir:CodeableConcept.coding [
             fhir:index 0;
             fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0131" ];
             fhir:Coding.code [ fhir:value "C" ]           ]         ], [
           fhir:index 1;
           fhir:CodeableConcept.coding [
             fhir:index 0;
             fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-RoleCode" ];
             fhir:Coding.code [ fhir:value "DAUC" ]           ]         ];
         fhir:Patient.contact.name [
           fhir:HumanName.text [ fhir:value "Jane Daughter" ];
           fhir:HumanName.family [ fhir:value "Daughter" ];
           fhir:HumanName.given [
             fhir:value "Jane";
             fhir:index 0           ]         ];
         fhir:Patient.contact.telecom [
           fhir:index 0;
           fhir:ContactPoint.system [ fhir:value "phone" ];
           fhir:ContactPoint.value [ fhir:value "(770) 224 1544" ]         ]       ]     ]
  ].

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

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.