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/f201 (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 "f201"] ; # 
  fhir:instantiatesCanonical ( [
     fhir:v "http://example.org/fhir/PlanDefinition/KDN5"^^xsd:anyURI ;
     fhir:link <http://example.org/fhir/PlanDefinition/KDN5>
  ] ) ; # 
  fhir:status [ fhir:v "completed"] ; # 
  fhir:code [
     fhir:coding ( [
       a sct:367336001 ;
       fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "367336001" ] ;
       fhir:display [ fhir:v "Chemotherapy" ]
     ] ) #  The procedure is TPF-based chemotherapy 
  ] ; # 
  fhir:subject [
     fhir:reference [ fhir:v "Patient/f201" ] ; #  It entails Roel's TPF treatment 
     fhir:display [ fhir:v "Roel" ]
  ] ; # 
  fhir:encounter [
     fhir:reference [ fhir:v "Encounter/f202" ] ;
     fhir:display [ fhir:v "Roel's encounter on January 28th, 2013" ]
  ] ; # 
  fhir:occurrence [
     a fhir:Period ;
     fhir:start [ fhir:v "2013-01-28T13:31:00+01:00"^^xsd:dateTime ] ;
     fhir:end [ fhir:v "2013-01-28T14:27:00+01:00"^^xsd:dateTime ]
  ] ; # 
  fhir:performer ( [
     fhir:function [
       fhir:coding ( [
         a sct:310512001 ;
         fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "310512001" ] ;
         fhir:display [ fhir:v "Medical oncologist" ]
       ] )
     ] ;
     fhir:actor [
       fhir:reference [ fhir:v "Practitioner/f201" ] ;
       fhir:display [ fhir:v "Dokter Bronsig" ]
     ]
  ] ) ; # 
  fhir:reason ( [
     fhir:concept [
       fhir:text [ fhir:v "DiagnosticReport/f201" ]
     ]
  ] ) ; # 
  fhir:bodySite ( [
     fhir:coding ( [
       a sct:272676008 ;
       fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "272676008" ] ;
       fhir:display [ fhir:v "Entire sphenoid bone (body structure)" ]
     ] )
  ] ) ; #  TODO Why can't this be Resource (any) AND String? 
  fhir:note ( [
     fhir:text [ fhir:v "Eerste neo-adjuvante TPF-kuur bij groot proces in sphenoid met intracraniale uitbreiding." ]
  ] )] . #  No outcomes, reports, complications or follow-ups were available 

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


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.