FHIR CI-Build

This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions

Example CareTeam/example3 (Turtle)

Responsible Owner: Patient Care Work GroupStandards Status: InformativeCompartments: Group, Patient, Practitioner, RelatedPerson

Raw Turtle (+ also see Turtle/RDF Format Specification)

Home health care team, a definitional team not associated with a specific patient

@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <https://loinc.org/rdf/> .
@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 -------------------------------------------------------------------

<http://hl7.org/fhir/CareTeam/example3> a fhir:CareTeam ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example3"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\">West Main Home Health Agency Home Care Team.</div>"^^rdf:XMLLiteral ]
  ] ; # a multi-disciplinary, home based-focused care team,
#   illustrating a team with several participants in different clinical roles,
#   not associated with a patient. This CareTeam describes a standing or reusable team definition, organized around a set of participant roles that can later be referenced and linked to a specific patient
  fhir:contained ( [
     a fhir:Practitioner ;
     fhir:id [ fhir:v "prac-sw" ] ;
     fhir:name ( [
       fhir:text [ fhir:v "Social Worker" ]
     ] )
  ] [
     a fhir:Practitioner ;
     fhir:id [ fhir:v "prac-hha" ] ;
     fhir:name ( [
       fhir:text [ fhir:v "Home Health Aide" ]
     ] )
  ] [
     a fhir:Practitioner ;
     fhir:id [ fhir:v "prac-ncc" ] ;
     fhir:name ( [
       fhir:text [ fhir:v "Nurse Care Coordinator" ]
     ] )
  ] [
     a fhir:Practitioner ;
     fhir:id [ fhir:v "prac-pt" ] ;
     fhir:name ( [
       fhir:text [ fhir:v "Physical Therapist" ]
     ] )
  ] [
     a fhir:Practitioner ;
     fhir:id [ fhir:v "prac-ot" ] ;
     fhir:name ( [
       fhir:text [ fhir:v "Occupational Therapist" ]
     ] )
  ] ) ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:category ( [
     fhir:coding ( [
       a loinc:LA28866-4 ;
       fhir:system [
         fhir:v "http://loinc.org"^^xsd:anyURI ;
         fhir:l <http://loinc.org>
       ] ;
       fhir:code [ fhir:v "LA28866-4" ] ;
       fhir:display [ fhir:v "Home & Community Based Services (HCBS)-focused care team" ]
     ] )
  ] ) ; # 
  fhir:name [ fhir:v "West Main Home Health Agency Home Health Care Team"] ; # 
  fhir:participant ( [
     fhir:role [
       fhir:text [ fhir:v "Social Worker" ]
     ] ;
     fhir:member [
       fhir:l <#prac-sw> ;
       fhir:reference [ fhir:v "#prac-sw" ] ;
       fhir:display [ fhir:v "Social Worker" ]
     ]
  ] [
     fhir:role [
       fhir:text [ fhir:v "Home Health Aide" ]
     ] ;
     fhir:member [
       fhir:l <#prac-hha> ;
       fhir:reference [ fhir:v "#prac-hha" ] ;
       fhir:display [ fhir:v "Home Health Aide" ]
     ]
  ] [
     fhir:role [
       fhir:text [ fhir:v "Nurse Care Coordinator" ]
     ] ;
     fhir:member [
       fhir:l <#prac-ncc> ;
       fhir:reference [ fhir:v "#prac-ncc" ] ;
       fhir:display [ fhir:v "Nurse Care Coordinator" ]
     ]
  ] [
     fhir:role [
       fhir:text [ fhir:v "Physical Therapist" ]
     ] ;
     fhir:member [
       fhir:l <#prac-pt> ;
       fhir:reference [ fhir:v "#prac-pt" ] ;
       fhir:display [ fhir:v "Physical Therapist" ]
     ]
  ] [
     fhir:role [
       fhir:text [ fhir:v "Occupational Therapist" ]
     ] ;
     fhir:member [
       fhir:l <#prac-ot> ;
       fhir:reference [ fhir:v "#prac-ot" ] ;
       fhir:display [ fhir:v "Occupational Therapist" ]
     ]
  ] ) ; # 
  fhir:managingOrganization ( [
     fhir:l <http://hl7.org/fhir/Organization/f001> ;
     fhir:reference [ fhir:v "Organization/f001" ]
  ] ) . # 

<http://hl7.org/fhir/Organization/f001> a fhir:Organization .

# -------------------------------------------------------------------------------------


Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.