FHIR CI-Build

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

Example Procedure/f001 (Turtle)

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

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

Real-world procedure example

@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:Procedure ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "f001"] ; # 
  fhir:status [ fhir:v "completed"] ; # 
  fhir:code [
     fhir:coding ( [
       a sct:34068001 ;
       fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "34068001" ] ;
       fhir:display [ fhir:v "Heart valve replacement" ]
     ] )
  ] ; # 
  fhir:subject [
     fhir:reference [ fhir:v "Patient/f001" ] ;
     fhir:display [ fhir:v "P. van de Heuvel" ]
  ] ; # 
  fhir:encounter [
     fhir:reference [ fhir:v "Encounter/f001" ]
  ] ; # 
  fhir:occurrence [
     a fhir:Period ;
     fhir:start [ fhir:v "2011-06-26"^^xsd:date ] ;
     fhir:end [ fhir:v "2011-06-27"^^xsd:date ]
  ] ; # 
  fhir:performer ( [
     fhir:function [
       fhir:coding ( [
         fhir:system [ fhir:v "urn:oid:2.16.840.1.113883.2.4.15.111"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "01.000" ] ; #   \"AssignedRoleType\" coding system  
         fhir:display [ fhir:v "Arts" ]
       ] ) ;
       fhir:text [ fhir:v "Care role" ]
     ] ;
     fhir:actor [
       fhir:reference [ fhir:v "Practitioner/f002" ] ;
       fhir:display [ fhir:v "P. Voigt" ]
     ]
  ] ) ; # 
  fhir:reason ( [
     fhir:concept [
       fhir:text [ fhir:v "Heart valve disorder" ]
     ]
  ] ) ; # 
  fhir:bodySite ( [
     fhir:coding ( [
       a sct:17401000 ;
       fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "17401000" ] ;
       fhir:display [ fhir:v "Heart valve structure" ]
     ] )
  ] ) ; # 
  fhir:outcome ( [
     fhir:concept [
       fhir:text [ fhir:v "improved blood circulation" ]
     ]
  ] ) ; # 
  fhir:report ( [
     fhir:reference [ fhir:v "DiagnosticReport/f001" ] ;
     fhir:display [ fhir:v "Lab results blood test" ]
  ] ) ; # 
  fhir:followUp ( [
     fhir:concept [
       fhir:text [ fhir:v "described in care plan" ]
     ]
  ] )] . # 

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


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.