@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 -------------------------------------------------------------------

<http://hl7.org/fhir/us/eltss/Task/Task1> a fhir:Task ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "Task1"] ; # 
  fhir:text [
     fhir:status [ fhir:v "extensions" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: Task </b><a name=\"Task1\"> </a><a name=\"hcTask1\"> </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\">ResourceTask &quot;Task1&quot; </p></div><p><b>ServiceRequest Pertains To Goal</b>: <a href=\"Goal-goal1.html\">Goal/goal1</a></p><p><b>status</b>: ready</p><p><b>intent</b>: order</p><p><b>priority</b>: routine</p><p><b>code</b>: Fulfill the focal request <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://hl7.org/fhir/R4/codesystem-task-code.html\">Task Codes</a>#fulfill)</span></p><p><b>description</b>: Perform exercises to improve balance skills.</p><p><b>for</b>: <a href=\"Patient-patientBSJ1.html\">Patient/patientBSJ1: Betsy</a> &quot; SMITH-JOHNSON&quot;</p><p><b>requester</b>: <a href=\"Practitioner-planner1.html\">Practitioner/planner1: Mark Planner</a> &quot; PLANNER&quot;</p><p><b>owner</b>: <a href=\"Patient-patientBSJ1.html\">Patient/patientBSJ1: Betsy</a> &quot; SMITH-JOHNSON&quot;</p></div>"
  ] ; # 
  fhir:extension ( [
     fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/resource-pertainsToGoal"^^xsd:anyURI ] ;
     fhir:value [
       a fhir:Reference ;
       fhir:link <http://hl7.org/fhir/us/eltss/Goal/goal1> ;
       fhir:reference [ fhir:v "Goal/goal1" ]
     ]
  ] ) ; # 
  fhir:status [ fhir:v "ready"] ; # 
  fhir:intent [ fhir:v "order"] ; # 
  fhir:priority [ fhir:v "routine"] ; # 
  fhir:code [
     fhir:coding ( [
       fhir:system [ fhir:v "http://hl7.org/fhir/CodeSystem/task-code"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "fulfill" ] ;
       fhir:display [ fhir:v "Fulfill the focal request" ]
     ] )
  ] ; # 
  fhir:description [ fhir:v "Perform exercises to improve balance skills."] ; # 
  fhir:for [
     fhir:link <http://hl7.org/fhir/us/eltss/Patient/patientBSJ1> ;
     fhir:reference [ fhir:v "Patient/patientBSJ1" ] ;
     fhir:display [ fhir:v "Betsy" ]
  ] ; # 
  fhir:requester [
     fhir:link <http://hl7.org/fhir/us/eltss/Practitioner/planner1> ;
     fhir:reference [ fhir:v "Practitioner/planner1" ] ;
     fhir:display [ fhir:v "Mark Planner" ]
  ] ; # 
  fhir:owner [
     fhir:link <http://hl7.org/fhir/us/eltss/Patient/patientBSJ1> ;
     fhir:reference [ fhir:v "Patient/patientBSJ1" ] ;
     fhir:display [ fhir:v "Betsy" ]
  ] . # 

<http://hl7.org/fhir/us/eltss/Goal/goal1> a fhir:us .

<http://hl7.org/fhir/us/eltss/Patient/patientBSJ1> a fhir:us .

<http://hl7.org/fhir/us/eltss/Practitioner/planner1> a fhir:us .

# -------------------------------------------------------------------------------------

