@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<https://hl7.no/fhir/kommune/CareTeam/example-careteam> a fhir:CareTeam ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example-careteam"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: CareTeam example-careteam</b></p><a name=\"example-careteam\"> </a><a name=\"hcexample-careteam\"> </a><p><b>status</b>: Active</p><p><b>name</b>: Tverrfaglig oppfølgingsteam Bydel Grünerløkka</p><p><b>subject</b>: <a href=\"Patient-example-patient.html\">Kari Hansen  Female, DoB: 1948-09-12</a></p><blockquote><p><b>participant</b></p><p><b>role</b>: <span title=\"Codes:\">Koordinator</span></p><p><b>member</b>: <a href=\"PractitionerRole-example-practitionerrole.html\">PractitionerRole</a></p></blockquote><blockquote><p><b>participant</b></p><p><b>role</b>: <span title=\"Codes:\">Fysioterapeut</span></p><p><b>member</b>: <a href=\"PractitionerRole-example-practitionerrole-physio.html\">PractitionerRole</a></p></blockquote><blockquote><p><b>participant</b></p><p><b>role</b>: <span title=\"Codes:\">Ergoterapeut</span></p><p><b>member</b>: <a href=\"PractitionerRole-example-practitionerrole-ergo.html\">PractitionerRole</a></p></blockquote><p><b>managingOrganization</b>: <a href=\"Organization-example-organization.html\">Organization Oslo kommune, Bydel Grünerløkka, Hjemmetjenesten</a></p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:name [ fhir:v "Tverrfaglig oppfølgingsteam Bydel Grünerløkka"] ; # 
  fhir:subject [
     fhir:l <https://hl7.no/fhir/kommune/Patient/example-patient> ;
     fhir:reference [ fhir:v "Patient/example-patient" ]
  ] ; # 
  fhir:participant ( [
     fhir:role ( [
       fhir:text [ fhir:v "Koordinator" ]
     ] ) ;
     fhir:member [
       fhir:l <https://hl7.no/fhir/kommune/PractitionerRole/example-practitionerrole> ;
       fhir:reference [ fhir:v "PractitionerRole/example-practitionerrole" ]
     ]
  ] [
     fhir:role ( [
       fhir:text [ fhir:v "Fysioterapeut" ]
     ] ) ;
     fhir:member [
       fhir:l <https://hl7.no/fhir/kommune/PractitionerRole/example-practitionerrole-physio> ;
       fhir:reference [ fhir:v "PractitionerRole/example-practitionerrole-physio" ]
     ]
  ] [
     fhir:role ( [
       fhir:text [ fhir:v "Ergoterapeut" ]
     ] ) ;
     fhir:member [
       fhir:l <https://hl7.no/fhir/kommune/PractitionerRole/example-practitionerrole-ergo> ;
       fhir:reference [ fhir:v "PractitionerRole/example-practitionerrole-ergo" ]
     ]
  ] ) ; # 
  fhir:managingOrganization ( [
     fhir:l <https://hl7.no/fhir/kommune/Organization/example-organization> ;
     fhir:reference [ fhir:v "Organization/example-organization" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

