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 - TTL Representation

Raw ttl | Download


@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

 a fhir:RelatedPerson ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example-related-person"] ; # 
  fhir:meta [
    ( fhir:profile [
fhir:v "http://fhir.health.gov.il/StructureDefinition/il-core-related-person"^^xsd:anyURI ;
fhir:link <http://fhir.health.gov.il/StructureDefinition/il-core-related-person>     ] )
  ] ; # 
  fhir:text [
fhir:status [ fhir:v "extensions" ] ;
fhir: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>"
  ] ; # 
  fhir:extension ( [
    ( fhir:extension [
fhir:url [ fhir:v "given"^^xsd:anyURI ] ;
fhir:value [ fhir:v "John Doe Sr." ]     ] ) ;
fhir:url [ fhir:v "http://fhir.health.gov.il/StructureDefinition/ext-administrative-parent-name"^^xsd:anyURI ]
  ] ) ; # 
  fhir:identifier ( [
fhir:system [ fhir:v "http://fhir.health.gov.il/identifier/il-national-id"^^xsd:anyURI ] ;
fhir:value [ fhir:v "000000018" ]
  ] ) ; # 
  fhir:active [ fhir:v "true"^^xsd:boolean] ; # 
  fhir:patient [
fhir:reference [ fhir:v "Patient/patient-with-hebrew-date" ]
  ] ; # 
  fhir:relationship ( [
    ( fhir:coding [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-RoleCode"^^xsd:anyURI ] ;
fhir:code [ fhir:v "GUARD" ] ;
fhir:display [ fhir:v "Guardian" ]     ] )
  ] ) ; # 
  fhir:name ( [
fhir:use [ fhir:v "official" ] ;
fhir:family [ fhir:v "Doe" ] ;
    ( fhir:given [ fhir:v "John" ] )
  ] ) ; # 
  fhir:telecom ( [
fhir:system [ fhir:v "phone" ] ;
fhir:value [ fhir:v "+1-555-555-5555" ] ;
fhir:use [ fhir:v "mobile" ]
  ] ) ; # 
  fhir:address ( [
    ( fhir:line [ fhir:v "123 Main St" ] ) ;
fhir:city [ fhir:v "Somewhere" ] ;
fhir:state [ fhir:v "CA" ] ;
fhir:postalCode [ fhir:v "90210" ] ;
fhir:country [ fhir:v "USA" ]
  ] ) . #