MediRecords FHIR Implementation Guide
1.3.0 - release


: MediRecords RelatedPerson Example - JSON Representation

Raw json | Download


{
  "resourceType" : "RelatedPerson",
  "id" : "1e5cae20-85bf-11e8-b401-ffccd711ad9r",
  "meta" : {
    "profile" : [
      "https://fhir.medirecords.com/StructureDefinition/mr-related-person-core"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: RelatedPerson</b><a name=\"1e5cae20-85bf-11e8-b401-ffccd711ad9r\"> </a></p><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Resource RelatedPerson &quot;1e5cae20-85bf-11e8-b401-ffccd711ad9r&quot; </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-mr-related-person-core.html\">MediRecords RelatedPerson</a></p></div><p><b>patient</b>: <a href=\"Patient-1e5cae20-85bf-11e8-b401-ffccd711ad9c.html\">Patient/1e5cae20-85bf-11e8-b401-ffccd711ad9c</a> &quot; GREY&quot;</p><p><b>relationship</b>: brother <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/5.3.0/CodeSystem-v3-RoleCode.html\">RoleCode</a>#BRO)</span>, Emergency Contact <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/5.3.0/CodeSystem-v2-0131.html\">contactRole2</a>#C)</span>, Next-of-Kin <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/5.3.0/CodeSystem-v2-0131.html\">contactRole2</a>#N)</span></p><p><b>name</b>: Sean, Abbot</p><p><b>telecom</b>: ph: 0410999998(MOBILE), <a href=\"mailto:sean@nobody.com\">sean@nobody.com</a></p></div>"
  },
  "patient" : {
    "reference" : "Patient/1e5cae20-85bf-11e8-b401-ffccd711ad9c"
  },
  "relationship" : [
    {
      "coding" : [
        {
          "system" : "http://terminology.hl7.org/CodeSystem/v3-RoleCode",
          "code" : "BRO",
          "display" : "brother"
        }
      ]
    },
    {
      "coding" : [
        {
          "system" : "http://terminology.hl7.org/CodeSystem/v2-0131",
          "code" : "C",
          "display" : "Emergency Contact"
        }
      ]
    },
    {
      "coding" : [
        {
          "system" : "http://terminology.hl7.org/CodeSystem/v2-0131",
          "code" : "N",
          "display" : "Next-of-Kin"
        }
      ]
    }
  ],
  "name" : [
    {
      "text" : "Sean, Abbot"
    }
  ],
  "telecom" : [
    {
      "system" : "phone",
      "value" : "0410999998",
      "use" : "mobile"
    },
    {
      "system" : "email",
      "value" : "sean@nobody.com",
      "use" : "home"
    }
  ]
}