2nd DSTU Draft For Comment

This page is part of the FHIR Specification (v0.4.0: DSTU 2 Draft). 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 R2

4.20.6 Resource ImmunizationRecommendation - Examples

Example Index:

Example of immunizationrecommendationXMLJSON

4.20.6.1 General

XML

Example of immunizationrecommendation (id = "example")

Raw XML

<ImmunizationRecommendation xmlns="http://hl7.org/fhir">
  <id value="example"/>
  <text>
    <status value="generated"/>
    <div xmlns="http://www.w3.org/1999/xhtml"><!-- Snipped for brevity --></div>
  </text>
  <patient>
    <reference value="Patient/example"/>
  </patient>
  <recommendation>
    <date value="2015-02-09T11:04:15.817-05:00"/>
    <vaccineType>
      <coding>
        <system value="http://snomed.info/sct"/>
        <code value="14745005"/>
        <display value="Hepatitis A vaccine"/>
      </coding>
    </vaccineType>
    <doseNumber value="1"/>
    <forecastStatus>
      <coding>
        <system value="http://hl7.org/fhir/vs/immunization-recommendation-status"/>
        <code value="Not Complete"/>
        <display value="Not Complete"/>
      </coding>
    </forecastStatus>
    <dateCriterion>
      <code>
        <coding>
          <system value="http://hl7.org/fhir/immunization-recommendation-date-criterion"/>
          <code value="earliest"/>
          <display value="Earliest Date"/>
        </coding>
      </code>
      <value value="2015-12-01T00:00:00-05:00"/>
    </dateCriterion>
    <dateCriterion>
      <code>
        <coding>
          <system value="http://hl7.org/fhir/immunization-recommendation-date-criterion"/>
          <code value="recommended"/>
          <display value="Recommended Date"/>
        </coding>
      </code>
      <value value="2015-12-01T00:00:00-05:00"/>
    </dateCriterion>
    <dateCriterion>
      <code>
        <coding>
          <system value="http://hl7.org/fhir/immunization-recommendation-date-criterion"/>
          <code value="pastdue"/>
          <display value="Past Due Date"/>
        </coding>
      </code>
      <value value="2016-12-28T00:00:00-05:00"/>
    </dateCriterion>
  </recommendation>
</ImmunizationRecommendation>

JSON

Example of immunizationrecommendation

Raw JSON (Canonical)

{
  "resourceType": "ImmunizationRecommendation",
  "id": "example",
  "text": {
    "status": "generated",
    "div": "<div>!-- Snipped for Brevity --></div>"
  },
  "patient": {
    "reference": "Patient/example"
  },
  "recommendation": [
    {
      "date": "2015-02-09T11:04:15.817-05:00",
      "vaccineType": {
        "coding": [
          {
            "system": "http://snomed.info/sct",
            "code": "14745005",
            "display": "Hepatitis A vaccine"
          }
        ]
      },
      "doseNumber": 1,
      "forecastStatus": {
        "coding": [
          {
            "system": "http://hl7.org/fhir/vs/immunization-recommendation-status",
            "code": "Not Complete",
            "display": "Not Complete"
          }
        ]
      },
      "dateCriterion": [
        {
          "code": {
            "coding": [
              {
                "system": "http://hl7.org/fhir/immunization-recommendation-date-criterion",
                "code": "earliest",
                "display": "Earliest Date"
              }
            ]
          },
          "value": "2015-12-01T00:00:00-05:00"
        },
        {
          "code": {
            "coding": [
              {
                "system": "http://hl7.org/fhir/immunization-recommendation-date-criterion",
                "code": "recommended",
                "display": "Recommended Date"
              }
            ]
          },
          "value": "2015-12-01T00:00:00-05:00"
        },
        {
          "code": {
            "coding": [
              {
                "system": "http://hl7.org/fhir/immunization-recommendation-date-criterion",
                "code": "pastdue",
                "display": "Past Due Date"
              }
            ]
          },
          "value": "2016-12-28T00:00:00-05:00"
        }
      ]
    }
  ]
}

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.