FHIR CI-Build

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

Example Condition/f203 (Turtle)

Patient Care Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Encounter, Patient, Practitioner, RelatedPerson

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

Real-word condition example (sepsis)

@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 -------------------------------------------------------------------

#  @version June 2013 @author Melchior Ferdinand Pot 

[a fhir:Condition ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "f203"] ; # 
  fhir:clinicalStatus [
     fhir:coding ( [
       fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/condition-clinical"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "active" ]
     ] )
  ] ; # 
  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" ]
     ] ) #  Bacterial sepsis is certainly a moderate to severe problem 
  ] ) ; # 
  fhir:severity [
     fhir:coding ( [
       a sct:371924009 ;
       fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "371924009" ] ;
       fhir:display [ fhir:v "Moderate to severe" ]
     ] )
  ] ; # 
  fhir:code [
     fhir:coding ( [
       a sct:10001005 ;
       fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "10001005" ] ;
       fhir:display [ fhir:v "Bacterial sepsis" ]
     ] ) #  The problem is bacterial sepsis 
  ] ; # 
  fhir:bodySite ( [
     fhir:coding ( [
       a sct:281158006 ;
       fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "281158006" ] ;
       fhir:display [ fhir:v "Pulmonary vascular structure" ]
     ] ) #  Location is intravascular pulmonary 
  ] ) ; # 
  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/f203" ] ;
     fhir:display [ fhir:v "Roel's encounter on March elevanth" ]
  ] ; # 
  fhir:onset [ fhir:v "2013-03-08"^^xsd:date] ; # 
  fhir:recordedDate [ fhir:v "2013-03-11"^^xsd:date] ; # 
  fhir:asserter [
     fhir:reference [ fhir:v "Practitioner/f201" ]
  ] ; # 
  fhir:evidence ( [
     fhir:reference [
       fhir:reference [ fhir:v "DiagnosticReport/f202" ] ;
       fhir:display [ fhir:v "Diagnostic report for Roel's sepsis" ]
     ]
  ] )] . # 

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


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.