Clinical
Summary
This
page
is
part
of
the
FHIR
Specification
(v4.0.1:
R4
(v5.0.0:
R5
-
Mixed
Normative
and
STU
)
).
This
is
the
current
published
version
in
it's
permanent
home
(it
will
always
be
available
at
this
URL).
The
current
version
which
supercedes
this
version
is
5.0.0
.
For
a
full
list
of
available
versions,
see
the
Directory
of
published
versions
.
Page
versions:
R5
R4B
R4
R3
| Patient Care Work Group | Maturity Level : N/A | Standards Status : Informative | Compartments : Encounter , Patient , Practitioner , RelatedPerson |
Raw Turtle (+ also see Turtle/RDF Format Specification )
Example of ambulation procedure
@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 -------------------------------------------------------------------<http://hl7.org/fhir/Procedure/ambulation> a fhir:Procedure; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "ambulation"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Ambulation procedure was not done</div>" ]; fhir:Procedure.identifier [ fhir:index 0; fhir:Identifier.value [ fhir:value "12345" ] ]; fhir:Procedure.instantiatesUri [ fhir:value "http://example.org/protocol-for-hypertension-during-pregnancy"; fhir:index 0 ]; fhir:Procedure.basedOn [ fhir:index 0; fhir:link <http://hl7.org/fhir/CarePlan/preg>; fhir:Reference.reference [ fhir:value "CarePlan/preg" ]; fhir:Reference.display [ fhir:value "Maternity care plan" ] ]; fhir:Procedure.status [ fhir:value "not-done"]; fhir:Procedure.statusReason [ fhir:CodeableConcept.coding [ fhir:index 0; a sct:398254007; fhir:Coding.system [ fhir:value "http://snomed.info/sct" ]; fhir:Coding.code [ fhir:value "398254007" ]; fhir:Coding.display [ fhir:value " Pre-eclampsia (disorder)" ] ]; fhir:CodeableConcept.text [ fhir:value "Pre-eclampsia" ] ]; fhir:Procedure.code [ fhir:CodeableConcept.coding [ fhir:index 0; a sct:62013009; fhir:Coding.system [ fhir:value "http://snomed.info/sct" ]; fhir:Coding.code [ fhir:value "62013009" ]; fhir:Coding.display [ fhir:value "Ambulating patient (procedure)" ] ]; fhir:CodeableConcept.text [ fhir:value "Ambulation" ] ]; fhir:Procedure.subject [ fhir:link <http://hl7.org/fhir/Patient/example>; fhir:Reference.reference [ fhir:value "Patient/example" ] ]; fhir:Procedure.performer [ fhir:index 0; fhir:Procedure.performer.actor [ fhir:link <http://hl7.org/fhir/Practitioner/f204>; fhir:Reference.reference [ fhir:value "Practitioner/f204" ]; fhir:Reference.display [ fhir:value "Carla Espinosa" ] ]; fhir:Procedure.performer.onBehalfOf [ fhir:link <http://hl7.org/fhir/Organization/f001>; fhir:Reference.reference [ fhir:value "Organization/f001" ]; fhir:Reference.display [ fhir:value "University Medical Hospital" ][a fhir:Procedure ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "ambulation"] ; # fhir:text [ fhir:status [ fhir:v "generated" ] ; fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Ambulation procedure was not done</div>" ] ; # fhir:identifier ( [ fhir:value [ fhir:v "12345" ] ] ) ; # fhir:instantiatesUri ( [ fhir:v "http://example.org/protocol-for-hypertension-during-pregnancy"^^xsd:anyURI] ) ; # fhir:basedOn ( [ fhir:reference [ fhir:v "CarePlan/preg" ] ; fhir:display [ fhir:v "Maternity care plan" ] ] ) ; # fhir:status [ fhir:v "not-done"] ; # fhir:statusReason [ fhir:coding ( [ a sct:398254007 ; fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ; fhir:code [ fhir:v "398254007" ] ; fhir:display [ fhir:v " Pre-eclampsia (disorder)" ] ] ) ; fhir:text [ fhir:v "Pre-eclampsia" ] ] ; # fhir:code [ fhir:coding ( [ a sct:62013009 ; fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ; fhir:code [ fhir:v "62013009" ] ; fhir:display [ fhir:v "Ambulating patient (procedure)" ] ] ) ; fhir:text [ fhir:v "Ambulation" ] ] ; # fhir:subject [ fhir:reference [ fhir:v "Patient/example" ] ] ; # fhir:performer ( [ fhir:actor [ fhir:reference [ fhir:v "CareTeam/example" ] ; fhir:display [ fhir:v "Maternity CareTeam" ] ] ; fhir:onBehalfOf [ fhir:reference [ fhir:v "Organization/f001" ] ; fhir:display [ fhir:v "University Medical Hospital" ] ]]; fhir:Procedure.location [ fhir:link <http://hl7.org/fhir/Location/1>; fhir:Reference.reference [ fhir:value "Location/1" ]; fhir:Reference.display [ fhir:value "Burgers University Medical Center, South Wing, second floor" ] ]; fhir:Procedure.reasonReference [ fhir:index 0; fhir:link <http://hl7.org/fhir/Observation/blood-pressure>; fhir:Reference.reference [ fhir:value "Observation/blood-pressure" ]; fhir:Reference.display [ fhir:value "Blood Pressure" ] ] . <http://hl7.org/fhir/CarePlan/preg> a fhir:CarePlan . <http://hl7.org/fhir/Patient/example> a fhir:Patient . <http://hl7.org/fhir/Practitioner/f204> a fhir:Practitioner . <http://hl7.org/fhir/Organization/f001> a fhir:Organization . <http://hl7.org/fhir/Location/1> a fhir:Location . <http://hl7.org/fhir/Observation/blood-pressure> a fhir:Observation . # - ontology header ------------------------------------------------------------ <http://hl7.org/fhir/Procedure/ambulation.ttl> a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI <http://build.fhir.org/Procedure/ambulation.ttl> .] ) ; # fhir:location [ fhir:reference [ fhir:v "Location/1" ] ; fhir:display [ fhir:v "Burgers University Medical Center, South Wing, second floor" ] ] ; # fhir:reason ( [ fhir:reference [ fhir:reference [ fhir:v "Observation/blood-pressure" ] ; fhir:display [ fhir:v "Blood Pressure" ] ] ] )] . # # -------------------------------------------------------------------------------------
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.
FHIR
®©
HL7.org
2011+.
FHIR
Release
4
(Technical
Correction
#1)
(v4.0.1)
R5
hl7.fhir.core#5.0.0
generated
on
Fri,
Nov
1,
2019
09:36+1100.
QA
Page
Sun,
Mar
26,
2023
15:25+1100.
Links:
Search
|
Version
History
|
Table
of
Contents
|
Credits
Glossary
|
QA
|
Compare
to
R3
R4
|
Compare
to
R4B
|
|
Propose
a
change