This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions
Example Observation/f202 (Turtle)
Raw Turtle (+ also see Turtle/RDF Format Specification)
Real-world patient - temperature
@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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
[a fhir:Observation ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "f202"] ; #
fhir:status [ fhir:v "entered-in-error"] ; # Oral temperature was measured on April fourth
fhir:category ( [
fhir:coding ( [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/observation-category"^^xsd:anyURI ] ;
fhir:code [ fhir:v "vital-signs" ] ;
fhir:display [ fhir:v "Vital Signs" ]
] )
] [
fhir:coding ( [
a loinc:8310-5 ;
fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "8310-5" ] ;
fhir:display [ fhir:v "Body temperature" ]
] )
] ) ; # category code is A code that classifies the general type of observation being made. This is used for searching, sorting and display purposes.
fhir:code [
fhir:coding ( [
fhir:system [ fhir:v "http://acme.lab"^^xsd:anyURI ] ;
fhir:code [ fhir:v "BT" ] ;
fhir:display [ fhir:v "Body temperature" ]
] [
a loinc:8331-1 ;
fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "8331-1" ] ;
fhir:display [ fhir:v "Oral temperature" ]
] [
a sct:56342008 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "56342008" ] ;
fhir:display [ fhir:v "Temperature taking" ]
] ) ; # Kind of observation = Temperature , local code here
fhir:text [ fhir:v "Temperature" ]
] ; #
fhir:subject [
fhir:reference [ fhir:v "Patient/f201" ] ;
fhir:display [ fhir:v "Roel" ]
] ; # No identifier could be provided to this observation
fhir:issued [ fhir:v "2013-04-04T13:27:00+01:00"^^xsd:dateTime] ; #
fhir:performer ( [
fhir:reference [ fhir:v "Practitioner/f201" ]
] ) ; #
fhir:value [
a fhir:Quantity ;
fhir:value [ fhir:v "39"^^xsd:decimal ] ; # Temperature=39 degrees Celsius
fhir:unit [ fhir:v "degrees C" ] ;
fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "Cel" ]
] ; #
fhir:interpretation ( [
fhir:coding ( [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation"^^xsd:anyURI ] ;
fhir:code [ fhir:v "H" ]
] )
] ) ; #
fhir:bodySite [
fhir:coding ( [
a sct:74262004 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "74262004" ] ;
fhir:display [ fhir:v "Oral cavity" ]
] )
] ; # In the meantime a new oral temperature is measured , http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3418963/
fhir:method [
fhir:coding ( [
a sct:89003005 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "89003005" ] ;
fhir:display [ fhir:v "Oral temperature taking" ]
] )
] ; #
fhir:referenceRange ( [
fhir:high [
fhir:value [ fhir:v "38.2"^^xsd:decimal ] ;
fhir:unit [ fhir:v "degrees C" ]
] # 0..* Provides guide for interpretation
] )] . #
# -------------------------------------------------------------------------------------
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.