FHIR Clinical Documents
1.0.0-ballot - STU1 Ballot International flag

FHIR Clinical Documents, published by HL7 International / Structured Documents. This guide is not an authorized publication; it is the continuous build for version 1.0.0-ballot built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/fhir-clinical-document/ and changes regularly. See the Directory of published versions

: patient-example - JSON Representation

Raw json | Download

{
  "resourceType" : "Patient",
  "id" : "patient-example",
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Patient patient-example</b></p><a name=\"patient-example\"> </a><a name=\"hcpatient-example\"> </a><a name=\"patient-example-en-US\"> </a><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">Eve Everiewoman Female, DoB: 1955-01-06</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Record is active\">Active:</td><td colspan=\"3\">true</td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Detail</td><td colspan=\"3\"><ul><li>ph: 555-555-2003(Work)</li><li>2222 Home Street (home)</li></ul></td></tr></table></div>"
  },
  "active" : true,
  "name" : [
    {
      "text" : "Eve Everiewoman",
      "family" : "Everiewoman1",
      "given" : [
        "Eve"
      ]
    }
  ],
  "telecom" : [
    {
      "system" : "phone",
      "value" : "555-555-2003",
      "use" : "work"
    }
  ],
  "gender" : "female",
  "birthDate" : "1955-01-06",
  "address" : [
    {
      "use" : "home",
      "line" : [
        "2222 Home Street"
      ]
    }
  ]
}