FHIR CI-Build

This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions

Example ImmunizationRecommendation/example-target-disease (Turtle)

Public Health Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Patient

Raw Turtle (+ also see Turtle/RDF Format Specification)

Example of immunizationrecommendation using a target disease

@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <https://loinc.org/rdf/> .
@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-target-disease"] ; # 
  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:targetDisease ( [
       fhir:coding ( [
         a sct:40468003 ;
         fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "40468003" ]
       ] )
     ] ) ;
     fhir:forecastStatus [
       fhir:text [ fhir:v "Not Complete" ]
     ] ;
     fhir:dateCriterion ( [
       fhir:code [
         fhir:coding ( [
           a loinc:30981-5 ;
           fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
           fhir:code [ fhir:v "30981-5" ] ;
           fhir:display [ fhir:v "Earliest date to give" ]
         ] )
       ] ;
       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.