@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/CarePlan/patient-careplan-with-custom-rules> a fhir:CarePlan ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "patient-careplan-with-custom-rules"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://resmed.com/fhir/core/StructureDefinition/resmed-care-plan"^^xsd:anyURI ;
       fhir:link <http://resmed.com/fhir/core/StructureDefinition/resmed-care-plan>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: CarePlan</b><a name=\"patient-careplan-with-custom-rules\"> </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 CarePlan &quot;patient-careplan-with-custom-rules&quot; </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-resmed-care-plan.html\">ResMed CarePlan</a></p></div><p><b>status</b>: active</p><p><b>intent</b>: plan</p><p><b>subject</b>: <a href=\"Patient-airview-patient-with-custom-rules.html\">Patient/airview-patient-with-custom-rules</a> &quot; MCDONALD&quot;</p><p><b>author</b>: <a href=\"Organization-airview-organization.html\">Organization/airview-organization</a> &quot;SleepyLabs Sleep Clinic&quot;</p><p><b>contributor</b>: <a href=\"Practitioner-resmed-practitioner-example.html\">Practitioner/resmed-practitioner-example</a> &quot; SMITH&quot;</p></div>"
  ] ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:intent [ fhir:v "plan"] ; # 
  fhir:subject [
     fhir:link <http://resmed.com/fhir/core/Patient/airview-patient-with-custom-rules> ;
     fhir:reference [ fhir:v "Patient/airview-patient-with-custom-rules" ]
  ] ; # 
  fhir:author [
     fhir:link <http://resmed.com/fhir/core/Organization/airview-organization> ;
     fhir:reference [ fhir:v "Organization/airview-organization" ]
  ] ; # 
  fhir:contributor ( [
     fhir:link <http://resmed.com/fhir/core/Practitioner/resmed-practitioner-example> ;
     fhir:reference [ fhir:v "Practitioner/resmed-practitioner-example" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

