This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions
Example Condition/f201 (Turtle)
Raw Turtle (+ also see Turtle/RDF Format Specification)
Real-word condition example (fever)
@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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
[a fhir:Condition ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "f201"] ; #
fhir:identifier ( [
fhir:value [ fhir:v "12345" ]
] ) ; #
fhir:clinicalStatus [
fhir:coding ( [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/condition-clinical"^^xsd:anyURI ] ;
fhir:code [ fhir:v "resolved" ]
] )
] ; #
fhir:verificationStatus [
fhir:coding ( [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/condition-ver-status"^^xsd:anyURI ] ;
fhir:code [ fhir:v "confirmed" ]
] )
] ; #
fhir:category ( [
fhir:coding ( [
a sct:55607006 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "55607006" ] ;
fhir:display [ fhir:v "Problem" ]
] [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/condition-category"^^xsd:anyURI ] ;
fhir:code [ fhir:v "problem-list-item" ]
] ) # The fever is a mild problem
] ) ; #
fhir:severity [
fhir:coding ( [
a sct:255604002 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "255604002" ] ;
fhir:display [ fhir:v "Mild" ]
] ) # The fever is mild
] ; #
fhir:code [
fhir:coding ( [
a sct:386661006 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "386661006" ] ;
fhir:display [ fhir:v "Fever" ]
] ) # The problem is a fever
] ; #
fhir:bodySite ( [
fhir:coding ( [
a sct:38266002 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "38266002" ] ;
fhir:display [ fhir:v "Entire body as a whole" ]
] ) # Fever applies to whole body
] ) ; #
fhir:subject [
fhir:reference [ fhir:v "Patient/f201" ] ; # It entails Roel's problem
fhir:display [ fhir:v "Roel" ]
] ; #
fhir:encounter [
fhir:reference [ fhir:v "Encounter/f201" ]
] ; #
fhir:onset [ fhir:v "2013-04-02"^^xsd:date] ; #
fhir:abatement [ fhir:v "around April 9, 2013"] ; #
fhir:recordedDate [ fhir:v "2013-04-04"^^xsd:date] ; #
fhir:recorder [
fhir:reference [ fhir:v "Practitioner/f201" ]
] ; #
fhir:asserter [
fhir:reference [ fhir:v "Practitioner/f201" ]
] ; #
fhir:evidence ( [
fhir:concept [
fhir:coding ( [
a sct:258710007 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "258710007" ] ;
fhir:display [ fhir:v "degrees C" ]
] )
] ; # Problem is confirmed by 39 degrees Celsius
fhir:reference [
fhir:reference [ fhir:v "Observation/f202" ] ;
fhir:display [ fhir:v "Temperature" ]
]
] )] . #
# -------------------------------------------------------------------------------------
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.