HL7 FHIR® Implementation Guide: Ophthalmology Retinal, Release 1
0.1.0 - STU 1 Ballot

This page is part of the HL7 FHIR® Implementation Guide: Ophthalmology Retinal, Release 1 (v0.1.0: STU1 Ballot 1) based on FHIR R4. . For a full list of available versions, see the Directory of published versions

: Patient Example - JSON Representation

Raw json | Download


{
  "resourceType" : "Patient",
  "id" : "ophthal-patient-example-0",
  "meta" : {
    "versionId" : "1",
    "lastUpdated" : "2021-01-25T14:36:03Z"
  },
  "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: 02134005</p><p><b>active</b>: true</p><p><b>name</b>: Eve Bill</p><p><b>gender</b>: female</p><p><b>birthDate</b>: 1958-12-24</p><p><b>address</b>: home</p></div>"
  },
  "identifier" : [
    {
      "type" : {
        "coding" : [
          {
            "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
            "code" : "MR",
            "display" : "Medical Record Number"
          }
        ],
        "text" : "Medical Record Number"
      },
      "system" : "http://fhir.medisoft.com",
      "value" : "02134005"
    }
  ],
  "active" : true,
  "name" : [
    {
      "text" : "Eve Bill",
      "family" : "Bill",
      "given" : [
        "Eve"
      ]
    }
  ],
  "gender" : "female",
  "birthDate" : "1958-12-24",
  "address" : [
    {
      "text" : "home",
      "line" : [
        "31 Pacquola Street"
      ],
      "city" : "Blacktown",
      "state" : "NSW",
      "postalCode" : "2148",
      "country" : "Australia"
    }
  ]
}