Publish-box
(todo)
This
is
the
Continuous
Integration
Build
of
FHIR
(will
be
incorrect/inconsistent
at
times).
See
the
Directory
of
published
versions
Example
Procedure/ambulation
(Turtle)
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 rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@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: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>"^^rdf:XMLLiteral
fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\">Ambulation procedure was not done</div>"^^rdf:XMLLiteral ]
] ; #
fhir:identifier ( [
fhir:value [ fhir:v "12345" ]
] ) ; #
fhir:basedOn ( [
fhir:link <http://hl7.org/fhir/CarePlan/preg> ;
fhir:l <http://hl7.org/fhir/CarePlan/preg> ;
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:system [
fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
fhir:l <http://snomed.info/sct>
] ;
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:system [
fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
fhir:l <http://snomed.info/sct>
] ;
fhir:code [ fhir:v "62013009" ] ;
fhir:display [ fhir:v "Ambulating patient (procedure)" ]
] ) ;
fhir:text [ fhir:v "Ambulation" ]
] ; #
fhir:subject [
fhir:link <http://hl7.org/fhir/Patient/example> ;
fhir:l <http://hl7.org/fhir/Patient/example> ;
fhir:reference [ fhir:v "Patient/example" ]
] ; #
fhir:performer ( [
fhir:actor [
fhir:link <http://hl7.org/fhir/CareTeam/example> ;
fhir:l <http://hl7.org/fhir/CareTeam/example> ;
fhir:reference [ fhir:v "CareTeam/example" ] ;
fhir:display [ fhir:v "Maternity CareTeam" ]
] ;
fhir:onBehalfOf [
fhir:link <http://hl7.org/fhir/Organization/f001> ;
fhir:l <http://hl7.org/fhir/Organization/f001> ;
fhir:reference [ fhir:v "Organization/f001" ] ;
fhir:display [ fhir:v "University Medical Hospital" ]
]
] ) ; #
fhir:location [
fhir:link <http://hl7.org/fhir/Location/1> ;
fhir:l <http://hl7.org/fhir/Location/1> ;
fhir:reference [ fhir:v "Location/1" ] ;
fhir:display [ fhir:v "Burgers University Medical Center, South Wing, second floor" ]
] ; #
fhir:reason ( [
fhir:reference [
fhir:link <http://hl7.org/fhir/Observation/blood-pressure> ;
fhir:l <http://hl7.org/fhir/Observation/blood-pressure> ;
fhir:reference [ fhir:v "Observation/blood-pressure" ] ;
fhir:display [ fhir:v "Blood Pressure" ]
]
] ) . #
<http://hl7.org/fhir/CarePlan/preg> a fhir:CarePlan .
<http://hl7.org/fhir/Patient/example> a fhir:Patient .
<http://hl7.org/fhir/CareTeam/example> a fhir:CareTeam .
<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 .
# -------------------------------------------------------------------------------------
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.