This page is part of the FHIR Specification (v5.0.0: R5 - STU). This is the current published version in it's permanent home (it will always be available at this URL). For a full list of available versions, see the Directory of published versions . Page versions: R5 R4B R4 R3
Example CareTeam/example (Turtle)
Raw Turtle (+ also see Turtle/RDF Format Specification)
Care Team to address obesity
@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <https://loinc.org/rdf/> .
@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 -------------------------------------------------------------------
[a fhir:CareTeam ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "example"] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Care Team</div>"
] ; #
fhir:contained ( [
a fhir:Practitioner ;
fhir:id [ fhir:v "pr1" ] ;
fhir:name ( [
fhir:family [ fhir:v "Dietician" ] ;
fhir:given ( [ fhir:v "Dorothy" ] )
] )
] ) ; #
fhir:identifier ( [
fhir:value [ fhir:v "12345" ]
] ) ; #
fhir:status [ fhir:v "active"] ; #
fhir:category ( [
fhir:coding ( [
a loinc:LA27976-2 ;
fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "LA27976-2" ] ;
fhir:display [ fhir:v "Encounter-focused care team" ]
] )
] ) ; #
fhir:name [ fhir:v "Peter James Charlmers Care Team for Inpatient Encounter"] ; #
fhir:subject [
fhir:reference [ fhir:v "Patient/example" ] ;
fhir:display [ fhir:v "Peter James Chalmers" ]
] ; #
fhir:period [
fhir:end [ fhir:v "2013-01-01"^^xsd:date ]
] ; #
fhir:participant ( [
fhir:role [
fhir:text [ fhir:v "responsiblePerson" ]
] ;
fhir:member [
fhir:reference [ fhir:v "Patient/example" ] ;
fhir:display [ fhir:v "Peter James Chalmers" ]
]
] [
fhir:role [
fhir:text [ fhir:v "adviser" ]
] ;
fhir:member [
fhir:reference [ fhir:v "#pr1" ] ;
fhir:display [ fhir:v "Dorothy Dietition" ]
] ;
fhir:onBehalfOf [
fhir:reference [ fhir:v "Organization/f001" ]
] ;
fhir:coverage [
a fhir:Timing ;
fhir:repeat [
fhir:bounds [
a fhir:Period ;
fhir:start [ fhir:v "2010-12-23"^^xsd:date ] ;
fhir:end [ fhir:v "2013-01-01"^^xsd:date ]
] ;
fhir:frequency [ fhir:v "1"^^xsd:positiveInteger ] ;
fhir:period [ fhir:v "1"^^xsd:decimal ] ;
fhir:periodUnit [ fhir:v "d" ] ;
fhir:dayOfWeek ( [ fhir:v "mon" ] ) ;
fhir:when ( [ fhir:v "MORN" ] )
]
]
] ) ; #
fhir:managingOrganization ( [
fhir:reference [ fhir:v "Organization/f001" ]
] )] . #
# -------------------------------------------------------------------------------------
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.