Immunization Decision Support Forecast (ImmDS) Implementation Guide
1.0.0 - STU1

This page is part of the Immunization Decision Support Forecast FHIR IG (v1.0.0: STU 1) based on FHIR R4. This is the current published version. For a full list of available versions, see the Directory of published versions

ImmDSPatientExample - JSON Representation

(back to description)

Raw json

Source view


{
  "resourceType" : "Patient",
  "id" : "ImmDSPatientExample",
  "meta" : {
    "profile" : [
      "http://hl7.org/fhir/us/immds/StructureDefinition/immds-patient"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><p><b>identifier</b>: Medical record number: 1234</p><p><b>name</b>: Gene Wellington </p><p><b>gender</b>: male</p><p><b>birthDate</b>: 2020-04-28</p></div>"
  },
  "identifier" : [
    {
      "type" : {
        "coding" : [
          {
            "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
            "code" : "MR"
          }
        ]
      },
      "system" : "http://www.acme.com/identifiers/patient",
      "value" : "1234"
    }
  ],
  "name" : [
    {
      "family" : "Wellington",
      "given" : [
        "Gene"
      ]
    }
  ],
  "gender" : "male",
  "birthDate" : "2020-04-28"
}