OpenMRS Core FHIR Implementation Guide
0.1.0 - ci-build

OpenMRS Core FHIR Implementation Guide - Local Development build (v0.1.0). See the Directory of published versions

: OpenMRS Patient Example - JSON Representation

Raw json | Download


{
  "resourceType" : "Patient",
  "id" : "example-openmrs-Patient",
  "meta" : {
    "profile" : [
      "http://fhir.openmrs.org/core/StructureDefinition/omrs-patient"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\"><b>Ricky Jeannette </b> male, DoB: 1996-12-12 ( OpenMRS ID:\u00a04343534\u00a0(use:\u00a0OFFICIAL))</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Record is active\">Active:</td><td>true</td><td style=\"background-color: #f3f5da\" title=\"Known status of Patient\">Deceased:</td><td colspan=\"3\">false</td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Details:</td><td colspan=\"3\"><ul><li><a href=\"tel:+256788232241\">+256788232241</a></li><li>Washington Washington (HOME)</li></ul></td></tr></table></div>"
  },
  "identifier" : [
    {
      "extension" : [
        {
          "url" : "http://fhir.openmrs.org/core/StructureDefinition/omrs-patient-identifier-location",
          "valueReference" : {
            "reference" : "Location/a3b793f0-eb53-4cda-92ce-fe0a77106252",
            "type" : "Location",
            "display" : "Inpatient Ward"
          }
        }
      ],
      "use" : "official",
      "type" : {
        "coding" : [
          {
            "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
            "code" : "MR"
          }
        ],
        "text" : "OpenMRS ID"
      },
      "value" : "4343534"
    }
  ],
  "active" : true,
  "name" : [
    {
      "family" : "Jeannette",
      "given" : [
        "Ricky"
      ]
    }
  ],
  "telecom" : [
    {
      "system" : "phone",
      "value" : "+256788232241"
    }
  ],
  "gender" : "male",
  "birthDate" : "1996-12-12",
  "deceasedBoolean" : false,
  "address" : [
    {
      "use" : "home",
      "city" : "Washington",
      "district" : "Washington",
      "country" : "Washington"
    }
  ]
}