@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://resmed.com/fhir/core/EpisodeOfCare/resmed-episode-of-care-example> a fhir:EpisodeOfCare ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "resmed-episode-of-care-example"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: EpisodeOfCare</b><a name=\"resmed-episode-of-care-example\"> </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 EpisodeOfCare &quot;resmed-episode-of-care-example&quot; </p></div><p><b>status</b>: active</p><h3>StatusHistories</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Status</b></td><td><b>Period</b></td></tr><tr><td style=\"display: none\">*</td><td>active</td><td>2021-05-06 --&gt; (ongoing)</td></tr></table><p><b>patient</b>: <a href=\"Patient-airview-patient.html\">Patient/airview-patient</a> &quot; SMITH&quot;</p><p><b>managingOrganization</b>: <a href=\"Organization-airview-organization.html\">Organization/airview-organization</a> &quot;SleepyLabs Sleep Clinic&quot;</p><p><b>period</b>: 2021-05-06 --&gt; (ongoing)</p><p><b>careManager</b>: <a href=\"Practitioner-resmed-practitioner-example.html\">Practitioner/resmed-practitioner-example</a> &quot; SMITH&quot;</p><p><b>team</b>: <a href=\"CareTeam-resmed-care-team-example.html\">CareTeam/resmed-care-team-example</a></p></div>"
  ] ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:statusHistory ( [
     fhir:status [ fhir:v "active" ] ;
     fhir:period [
       fhir:start [ fhir:v "2021-05-06"^^xsd:date ]
     ]
  ] ) ; # 
  fhir:patient [
     fhir:link <http://resmed.com/fhir/core/Patient/airview-patient> ;
     fhir:reference [ fhir:v "Patient/airview-patient" ]
  ] ; # 
  fhir:managingOrganization [
     fhir:link <http://resmed.com/fhir/core/Organization/airview-organization> ;
     fhir:reference [ fhir:v "Organization/airview-organization" ]
  ] ; # 
  fhir:period [
     fhir:start [ fhir:v "2021-05-06"^^xsd:date ]
  ] ; # 
  fhir:careManager [
     fhir:link <http://resmed.com/fhir/core/Practitioner/resmed-practitioner-example> ;
     fhir:reference [ fhir:v "Practitioner/resmed-practitioner-example" ]
  ] ; # 
  fhir:team ( [
     fhir:link <http://resmed.com/fhir/core/CareTeam/resmed-care-team-example> ;
     fhir:reference [ fhir:v "CareTeam/resmed-care-team-example" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

