@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/dme-orders/Task/Home-Health> a fhir:Task ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "Home-Health"] ; # 
  fhir:meta [
     fhir:versionId [ fhir:v "2" ] ;
     fhir:lastUpdated [ fhir:v "2020-08-10T01:26:46.556Z"^^xsd:dateTime ] ;
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/us/dme-orders/StructureDefinition/PAOX-task"^^xsd:anyURI ;
       fhir:link <http://hl7.org/fhir/us/dme-orders/StructureDefinition/PAOX-task>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: Task</b><a name=\"Home-Health\"> </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 Task &quot;Home-Health&quot; Version &quot;2&quot; Updated &quot;2020-08-10 01:26:46+0000&quot; </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-PAOX-task.html\">PAO Task</a></p></div><p><b>identifier</b>: id: 56ae5855-9f20-41e4-a59d-000e36d9d85a</p><p><b>basedOn</b>: <a href=\"ServiceRequest-HomeHealth.html\">ServiceRequest/HomeHealth</a></p><p><b>status</b>: requested</p><p><b>intent</b>: order</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>: Proivde Home Health Services</p><p><b>focus</b>: <a href=\"ServiceRequest-HomeHealth.html\">ServiceRequest/HomeHealth</a></p><p><b>for</b>: <a href=\"Patient-example1.html\">Patient/example1</a> &quot; SHAW&quot;</p><p><b>authoredOn</b>: 2020-07-30 20:07:15-0600</p><p><b>requester</b>: <a href=\"Organization-Inpatient.html\">Organization/Inpatient</a> &quot;St. Michael's Hospital&quot;</p></div>"
  ] ; # 
  fhir:identifier ( [
     fhir:value [ fhir:v "56ae5855-9f20-41e4-a59d-000e36d9d85a" ]
  ] ) ; # 
  fhir:basedOn ( [
     fhir:link <http://hl7.org/fhir/us/dme-orders/ServiceRequest/HomeHealth> ;
     fhir:reference [ fhir:v "ServiceRequest/HomeHealth" ]
  ] ) ; # 
  fhir:status [ fhir:v "requested"] ; # 
  fhir:intent [ fhir:v "order"] ; # 
  fhir:code [
     fhir:coding ( [
       fhir:system [ fhir:v "http://hl7.org/fhir/CodeSystem/task-code"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "fulfill" ]
     ] )
  ] ; # 
  fhir:description [ fhir:v "Proivde Home Health Services"] ; # 
  fhir:focus [
     fhir:link <http://hl7.org/fhir/us/dme-orders/ServiceRequest/HomeHealth> ;
     fhir:reference [ fhir:v "ServiceRequest/HomeHealth" ]
  ] ; # 
  fhir:for [
     fhir:link <http://hl7.org/fhir/us/dme-orders/Patient/example1> ;
     fhir:reference [ fhir:v "Patient/example1" ]
  ] ; # 
  fhir:authoredOn [ fhir:v "2020-07-30T20:07:15-06:00"^^xsd:dateTime] ; # 
  fhir:requester [
     fhir:link <http://hl7.org/fhir/us/dme-orders/Organization/Inpatient> ;
     fhir:reference [ fhir:v "Organization/Inpatient" ]
  ] . # 

<http://hl7.org/fhir/us/dme-orders/ServiceRequest/HomeHealth> a fhir:us .

<http://hl7.org/fhir/us/dme-orders/Patient/example1> a fhir:us .

<http://hl7.org/fhir/us/dme-orders/Organization/Inpatient> a fhir:us .

# -------------------------------------------------------------------------------------

