This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions
Example Procedure/f004 (Turtle)
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 "f004"] ; #
fhir:status [ fhir:v "completed"] ; #
fhir:code [
fhir:coding ( [
a sct:48387007 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "48387007" ] ;
fhir:display [ fhir:v "Tracheotomy" ]
] )
] ; #
fhir:subject [
fhir:reference [ fhir:v "Patient/f001" ] ;
fhir:display [ fhir:v "P. van de Heuvel" ]
] ; #
fhir:encounter [
fhir:reference [ fhir:v "Encounter/f003" ]
] ; #
fhir:occurrence [
a fhir:Period ;
fhir:start [ fhir:v "2013-03-22T09:30:10+01:00"^^xsd:dateTime ] ;
fhir:end [ fhir:v "2013-03-22T10:30:10+01:00"^^xsd:dateTime ]
] ; #
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/f005" ] ;
fhir:display [ fhir:v "A. Langeveld" ]
]
] ) ; #
fhir:reason ( [
fhir:concept [
fhir:text [ fhir:v "ensure breathing during surgery" ]
]
] ) ; #
fhir:bodySite ( [
fhir:coding ( [
a sct:83030008 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "83030008" ] ;
fhir:display [ fhir:v "Retropharyngeal area" ]
] )
] ) ; #
fhir:outcome ( [
fhir:concept [
fhir:text [ fhir:v "removal of the retropharyngeal abscess" ]
]
] ) ; #
fhir:report ( [
fhir:reference [ fhir:v "DiagnosticReport/f001" ] ;
fhir:display [ fhir:v "???????????" ]
] ) ; #
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.