Genomics Reporting Implementation Guide
1.1.0 - Ballot

This page is part of the Genetic Reporting Implementation Guide (v1.1.0: STU 2 Ballot 1) based on FHIR R4. The current version which supercedes this version is 2.0.0. For a full list of available versions, see the Directory of published versions

: Example - Patient - JSON Representation

Raw json | Download


{
  "resourceType" : "Patient",
  "id" : "CGPatientExample01",
  "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: m123 (USUAL)</p><p><b>name</b>: Adam B. Everyman </p><p><b>gender</b>: male</p><p><b>birthDate</b>: 1951-01-20</p><p><b>address</b>: 123 Main St Anytown 12345 US </p><h3>Contacts</h3><table class=\"grid\"><tr><td>-</td><td><b>Telecom</b></td></tr><tr><td>*</td><td>ph: 555-555-5555(HOME), <a href=\"mailto:adam.everyman@example.com\">adam.everyman@example.com</a></td></tr></table><h3>Communications</h3><table class=\"grid\"><tr><td>-</td><td><b>Language</b></td></tr><tr><td>*</td><td><span title=\"Codes: {urn:ietf:bcp:47 en-US}\">English</span></td></tr></table></div>"
  },
  "identifier" : [
    {
      "use" : "usual",
      "type" : {
        "coding" : [
          {
            "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
            "code" : "MR",
            "display" : "Medical Record Number"
          }
        ]
      },
      "system" : "http://hospital.example.org",
      "value" : "m123"
    }
  ],
  "name" : [
    {
      "family" : "Everyman",
      "given" : [
        "Adam",
        "B."
      ]
    }
  ],
  "gender" : "male",
  "birthDate" : "1951-01-20",
  "address" : [
    {
      "line" : [
        "123 Main St"
      ],
      "city" : "Anytown",
      "postalCode" : "12345",
      "country" : "US"
    }
  ],
  "contact" : [
    {
      "telecom" : [
        {
          "system" : "phone",
          "value" : "555-555-5555",
          "use" : "home"
        },
        {
          "system" : "email",
          "value" : "adam.everyman@example.com"
        }
      ]
    }
  ],
  "communication" : [
    {
      "language" : {
        "coding" : [
          {
            "system" : "urn:ietf:bcp:47",
            "code" : "en-US",
            "display" : "English (Region=United States)"
          }
        ],
        "text" : "English"
      }
    }
  ]
}