This
page
is
part
of
the
FHIR
Specification
(v5.0.0:
R5
-
STU
).
This
is
the
current
published
version
in
it's
permanent
home
(it
will
always
be
available
at
this
URL).
For
a
full
list
of
available
versions,
see
the
Directory
of
published
versions
.
Page
versions:
R5
R4B
R4
R3
Publish-box
(todo)
Example
ImmunizationRecommendation/example
(Turtle)
Raw
Turtle
(+
also
see
Turtle/RDF
Format
Specification
)
Example
of
immunizationrecommendation
using
a
vaccine
code
@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 -------------------------------------------------------------------
[a fhir:ImmunizationRecommendation ;
<http://hl7.org/fhir/ImmunizationRecommendation/example> a fhir:ImmunizationRecommendation ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "example"] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Authored by Joginder Madra</div>"
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Authored by Joginder Madra</div>"^^rdf:XMLLiteral
] ; #
fhir:identifier ( [
fhir:system [ fhir:v "urn:ietf:rfc:3986"^^xsd:anyURI ] ;
fhir:value [ fhir:v "urn:oid:1.3.6.1.4.1.21367.2005.3.7.1235" ]
] ) ; #
fhir:patient [
fhir:link <http://hl7.org/fhir/Patient/example> ;
fhir:reference [ fhir:v "Patient/example" ]
] ; #
fhir:date [ fhir:v "2015-02-09T11:04:15.817-05:00"^^xsd:dateTime] ; #
fhir:authority [
fhir:link <http://hl7.org/fhir/Organization/hl7> ;
fhir:reference [ fhir:v "Organization/hl7" ]
] ; #
fhir:recommendation ( [
fhir:vaccineCode ( [
fhir:coding ( [
a sct:14745005 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "14745005" ] ;
fhir:display [ fhir:v "Hepatitis A vaccine" ]
] )
] ) ;
fhir:forecastStatus [
fhir:text [ fhir:v "Not Complete" ]
] ;
fhir:dateCriterion ( [
fhir:code [
fhir:coding ( [
fhir:system [ fhir:v "http://example.org/fhir/CodeSystem/immunization-recommendation-date-criterion"^^xsd:anyURI ] ;
fhir:code [ fhir:v "earliest" ] ;
fhir:display [ fhir:v "Earliest Date" ]
] )
] ;
fhir:value [ fhir:v "2015-12-01T00:00:00-05:00"^^xsd:dateTime ]
] [
fhir:code [
fhir:coding ( [
fhir:system [ fhir:v "http://example.org/fhir/CodeSystem/immunization-recommendation-date-criterion"^^xsd:anyURI ] ;
fhir:code [ fhir:v "recommended" ] ;
fhir:display [ fhir:v "Recommended" ]
] )
] ;
fhir:value [ fhir:v "2015-12-01T00:00:00-05:00"^^xsd:dateTime ]
] [
fhir:code [
fhir:coding ( [
fhir:system [ fhir:v "http://example.org/fhir/CodeSystem/immunization-recommendation-date-criterion"^^xsd:anyURI ] ;
fhir:code [ fhir:v "overdue" ] ;
fhir:display [ fhir:v "Past Due Date" ]
] )
] ;
fhir:value [ fhir:v "2016-12-28T00:00:00-05:00"^^xsd:dateTime ]
] ) ;
fhir:description [ fhir:v "First sequence in protocol" ] ;
fhir:series [ fhir:v "Vaccination Series 1" ] ;
fhir:doseNumber [ fhir:v "1" ] ;
fhir:seriesDoses [ fhir:v "3" ] ;
fhir:doseNumber [ ] ;
fhir:seriesDoses [ ] ;
fhir:supportingImmunization ( [
fhir:link <http://hl7.org/fhir/Immunization/example> ;
fhir:reference [ fhir:v "Immunization/example" ]
] ) ;
fhir:supportingPatientInformation ( [
fhir:link <http://hl7.org/fhir/Observation/example> ;
fhir:reference [ fhir:v "Observation/example" ]
] )
] )] . #
] ) . #
<http://hl7.org/fhir/Patient/example> a fhir:Patient .
<http://hl7.org/fhir/Organization/hl7> a fhir:Organization .
<http://hl7.org/fhir/Immunization/example> a fhir:Immunization .
<http://hl7.org/fhir/Observation/example> 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.