IL Core Implementation Guide
0.18.0 - draft Israel flag

This page is part of the IL-Core IG (v0.18.0: draft-1 Draft) based on FHIR (HL7® FHIR® Standard) R4. This is the current published version. For a full list of available versions, see the Directory of published versions

: Example ILCore RelatedPerson - JSON Representation

Raw json | Download


{
  "resourceType" : "RelatedPerson",
  "id" : "example-related-person",
  "meta" : {
    "profile" : [
      🔗 "http://fhir.health.gov.il/StructureDefinition/il-core-related-person"
    ]
  },
  "text" : {
    "status" : "extensions",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: RelatedPerson </b><a name=\"example-related-person\"> </a><a name=\"hcexample-related-person\"> </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\">ResourceRelatedPerson &quot;example-related-person&quot; </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-il-core-related-person.html\">ILCore RelatedPerson Profile</a></p></div><blockquote><p><b>Ext: Administrative Parent Name</b></p><blockquote><p><b>url</b></p><code>given</code></blockquote><p><b>value</b>: John Doe Sr.</p></blockquote><p><b>identifier</b>: <a href=\"NamingSystem-il-national-id.html\" title=\"Israeli Identifier number issued for all citizens and permanent residents. A nine-digit number including a check-digit\">Israeli National Identifier - Individual</a>/000000018</p><p><b>active</b>: true</p><p><b>patient</b>: <a href=\"Patient-patient-with-hebrew-date.html\">Patient/patient-with-hebrew-date</a> &quot; רם&quot;</p><p><b>relationship</b>: Guardian <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/5.5.0/CodeSystem-v3-RoleCode.html\">RoleCode</a>#GUARD)</span></p><p><b>name</b>: John Doe (Official)</p><p><b>telecom</b>: <a href=\"tel:+1-555-555-5555\">+1-555-555-5555</a></p><p><b>address</b>: 123 Main St Somewhere CA 90210 USA </p></div>"
  },
  "extension" : [
    {
      "extension" : [
        {
          "url" : "given",
          "valueString" : "John Doe Sr."
        }
      ],
      "url" : "http://fhir.health.gov.il/StructureDefinition/ext-administrative-parent-name"
    }
  ],
  "identifier" : [
    {
      "system" : "http://fhir.health.gov.il/identifier/il-national-id",
      "value" : "000000018"
    }
  ],
  "active" : true,
  "patient" : {
    🔗 "reference" : "Patient/patient-with-hebrew-date"
  },
  "relationship" : [
    {
      "coding" : [
        {
          "system" : "http://terminology.hl7.org/CodeSystem/v3-RoleCode",
          "code" : "GUARD",
          "display" : "Guardian"
        }
      ]
    }
  ],
  "name" : [
    {
      "use" : "official",
      "family" : "Doe",
      "given" : [
        "John"
      ]
    }
  ],
  "telecom" : [
    {
      "system" : "phone",
      "value" : "+1-555-555-5555",
      "use" : "mobile"
    }
  ],
  "address" : [
    {
      "line" : [
        "123 Main St"
      ],
      "city" : "Somewhere",
      "state" : "CA",
      "postalCode" : "90210",
      "country" : "USA"
    }
  ]
}