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 Planner 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 "practitioner-planner1"];
  fhir:Bundle.type [ fhir:value "collection"];
  fhir:Bundle.entry [
     fhir:index 0;
     fhir:Bundle.entry.fullUrl [ fhir:value "http://example.org/Practitioner/planner1" ];
     fhir:Bundle.entry.resource <http://example.org/Practitioner/planner1>
  ].

<http://example.org/Practitioner/planner1> a fhir:Practitioner;
  fhir:Resource.id [ fhir:value "planner1"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/eltss/StructureDefinition/Practitioner-eltss";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/us/eltss/StructureDefinition/Practitioner-eltss>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n            <p><b>Support Planner / Phone:</b> Mark Planner / (678) 555 1221</p>\n          </div>"
  ];
  fhir:Practitioner.identifier [
     fhir:index 0;
     fhir:Identifier.system [ fhir:value "http://hl7.org.fhir/sid/us-npi" ];
     fhir:Identifier.value [ fhir:value "9941339108" ]
  ], [
     fhir:index 1;
     fhir:Identifier.system [ fhir:value "http://www.acme.org/practitioners" ];
     fhir:Identifier.value [ fhir:value "25456" ]
  ];
  fhir:Practitioner.name [
     fhir:index 0;
     fhir:HumanName.text [ fhir:value "Mark Planner" ];
     fhir:HumanName.family [ fhir:value "Planner" ];
     fhir:HumanName.given [
       fhir:value "Mark";
       fhir:index 0     ]
  ];
  fhir:Practitioner.telecom [
     fhir:index 0;
     fhir:ContactPoint.system [ fhir:value "phone" ];
     fhir:ContactPoint.value [ fhir:value "(678) 555 1221" ]
  ].

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

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