Publish-box
(todo)
This
is
the
Continuous
Integration
Build
of
FHIR
(will
be
incorrect/inconsistent
at
times).
See
the
Directory
of
published
versions
Example
Goal/stop-smoking
(Turtle)
Raw
Turtle
(+
also
see
Turtle/RDF
Format
Specification
)
Goal
to
Stop
Smoking
@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 xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
<http://hl7.org/fhir/Goal/stop-smoking> a fhir:Goal ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "stop-smoking"] ; #
fhir:text [
fhir:status [ fhir:v "additional" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <p> A simple care goal for a patient to stop smoking.</p>\n </div>"^^rdf:XMLLiteral
fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <p> A simple care goal for a patient to stop smoking.</p>\n </div>"^^rdf:XMLLiteral ]
] ; #
fhir:identifier ( [
fhir:value [ fhir:v "123" ]
] ) ; #
fhir:lifecycleStatus [ fhir:v "completed"] ; #
fhir:achievementStatus [
fhir:coding ( [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/goal-achievement"^^xsd:anyURI ] ;
fhir:system [
fhir:v "http://terminology.hl7.org/CodeSystem/goal-achievement"^^xsd:anyURI ;
fhir:l <http://terminology.hl7.org/CodeSystem/goal-achievement>
] ;
fhir:code [ fhir:v "achieved" ] ;
fhir:display [ fhir:v "Achieved" ]
] ) ;
fhir:text [ fhir:v "Achieved" ]
] ; #
fhir:description [
fhir:text [ fhir:v "Stop smoking" ]
] ; #
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:display [ fhir:v "Peter James Chalmers" ]
] ; #
fhir:start [
a fhir:date ;
a fhir:Date ;
fhir:v "2015-04-05"^^xsd:date
] . #
<http://hl7.org/fhir/Patient/example> a fhir:Patient .
# -------------------------------------------------------------------------------------
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.