SMART Health Cards: Vaccination & Testing Implementation Guide
1.0.0 - STU1 Release International flag

SMART Health Cards: Vaccination & Testing Implementation Guide, published by HL7 International / Public Health. This guide is not an authorized publication; it is the continuous build for version 1.0.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/fhir-shc-vaccination-ig/ and changes regularly. See the Directory of published versions

: example-bundle-immunization-covid - JSON Representation

Raw json | Download

Note: Examples in this FHIR IG show just the FHIR resources used in a SMART Health Card. To view complete SMART Health Cards that include these FHIR resources, see here.

{
  "resourceType" : "Bundle",
  "type" : "collection",
  "entry" : [
    {
      "fullUrl" : "resource:0",
      "resource" : {
        "resourceType" : "Patient",
        "name" : [
          {
            "family" : "Anyperson",
            "given" : [
              "John",
              "B."
            ]
          }
        ],
        "birthDate" : "1951-01-20"
      }
    },
    {
      "fullUrl" : "resource:1",
      "resource" : {
        "resourceType" : "Immunization",
        "meta" : {
          "security" : [
            {
              "system" : "https://smarthealth.cards/ial",
              "code" : "IAL1.2"
            }
          ]
        },
        "status" : "completed",
        "vaccineCode" : {
          "coding" : [
            {
              "system" : "http://hl7.org/fhir/sid/cvx",
              "code" : "207"
            }
          ]
        },
        "patient" : {
          "reference" : "resource:0"
        },
        "occurrenceDateTime" : "2021-01-01",
        "lotNumber" : "0000001",
        "performer" : [
          {
            "actor" : {
              "display" : "ABC General Hospital"
            }
          }
        ]
      }
    },
    {
      "fullUrl" : "resource:2",
      "resource" : {
        "resourceType" : "Immunization",
        "meta" : {
          "security" : [
            {
              "system" : "https://smarthealth.cards/ial",
              "code" : "IAL1.2"
            }
          ]
        },
        "status" : "completed",
        "vaccineCode" : {
          "coding" : [
            {
              "system" : "http://hl7.org/fhir/sid/cvx",
              "code" : "207"
            }
          ]
        },
        "patient" : {
          "reference" : "resource:0"
        },
        "occurrenceDateTime" : "2021-01-29",
        "lotNumber" : "0000007",
        "performer" : [
          {
            "actor" : {
              "display" : "ABC General Hospital"
            }
          }
        ]
      }
    },
    {
      "fullUrl" : "resource:3",
      "resource" : {
        "resourceType" : "Immunization",
        "meta" : {
          "security" : [
            {
              "system" : "https://smarthealth.cards/ial",
              "code" : "IAL1.2"
            }
          ]
        },
        "status" : "completed",
        "vaccineCode" : {
          "coding" : [
            {
              "system" : "http://hl7.org/fhir/sid/cvx",
              "code" : "229"
            }
          ]
        },
        "patient" : {
          "reference" : "resource:0"
        },
        "occurrenceDateTime" : "2022-09-05",
        "lotNumber" : "0000001",
        "performer" : [
          {
            "actor" : {
              "display" : "ABC General Hospital"
            }
          }
        ]
      }
    }
  ]
}