This page is part of the FHIR Specification (v5.0.0-draft-final: Final QA Preview for R5 - see ballot notes). 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
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 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 ;
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: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:reference [ fhir:v "Patient/example" ]
] ; #
fhir:date [ fhir:v "2015-02-09T11:04:15.817-05:00"^^xsd:dateTime] ; #
fhir:authority [
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:supportingImmunization ( [
fhir:reference [ fhir:v "Immunization/example" ]
] ) ;
fhir:supportingPatientInformation ( [
fhir:reference [ fhir:v "Observation/example" ]
] )
] )] . #
# -------------------------------------------------------------------------------------
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.