AU Core Implementation Guide
0.1.0-draft - Draft Australia flag

This page is part of the AU Core Implementation Guide 0.1.0 Draft. It is based on AU Base 4.1.0. For a full list of available versions, see the Directory of published versions

: RelatedPerson - Mother of John Smith - TTL Representation

Page standards status: Informative

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:Resource.id [ fhir:value "smith-emma-john"]; # 
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org.au/fhir/core/StructureDefinition/au-core-relatedperson";
       fhir:index 0;
       fhir:link <http://hl7.org.au/fhir/core/StructureDefinition/au-core-relatedperson>     ]
  ]; # 
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: RelatedPerson</b><a name=\"smith-emma-john\"> </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;smith-emma-john&quot; </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-au-core-relatedperson.html\">AU Core RelatedPerson</a></p></div><p><b>identifier</b>: Medicare Number: 1234567892 (period: (?) --&gt; 2024-05)</p><p><b>patient</b>: <a href=\"Patient-baby-smith-john.html\">Patient/baby-smith-john</a> &quot; SMITH&quot;</p><p><b>relationship</b>: mother <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/5.0.0/CodeSystem-v3-RoleCode.html\">RoleCode</a>#MTH)</span></p><p><b>name</b>: Emma SMITH </p><p><b>telecom</b>: ph: 0491 579 212(MOBILE)</p></div>"
  ]; # 
  fhir:RelatedPerson.identifier [
     fhir:index 0;
     fhir:Identifier.type [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0203" ];
         fhir:Coding.code [ fhir:value "MC" ];
         fhir:Coding.display [ fhir:value "Patient's Medicare Number" ]       ];
       fhir:CodeableConcept.text [ fhir:value "Medicare Number" ]     ];
     fhir:Identifier.system [ fhir:value "http://ns.electronichealth.net.au/id/medicare-number" ];
     fhir:Identifier.value [ fhir:value "1234567892" ];
     fhir:Identifier.period [
       fhir:Period.end [ fhir:value "2024-05"^^xsd:gYearMonth ]     ]
  ]; # 
  fhir:RelatedPerson.patient [
     fhir:Reference.reference [ fhir:value "Patient/baby-smith-john" ];
     fhir:Reference.identifier [
       fhir:Identifier.use [ fhir:value "temp" ];
       fhir:Identifier.type [
         fhir:CodeableConcept.coding [
           fhir:index 0;
           fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0203" ];
           fhir:Coding.code [ fhir:value "MR" ]         ]       ];
       fhir:Identifier.system [ fhir:value "http://ns.electronichealth.net.au/id/abn-scoped/medicalrecord/1.0/51824753003" ];
       fhir:Identifier.value [ fhir:value "7746677" ];
       fhir:Identifier.assigner [
         fhir:Reference.display [ fhir:value "QLD Hospital" ]       ]     ]
  ]; # 
  fhir:RelatedPerson.relationship [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-RoleCode" ];
       fhir:Coding.code [ fhir:value "MTH" ];
       fhir:Coding.display [ fhir:value "mother" ]     ]
  ]; # 
  fhir:RelatedPerson.name [
     fhir:index 0;
     fhir:HumanName.family [ fhir:value "SMITH" ];
     fhir:HumanName.given [
       fhir:value "Emma";
       fhir:index 0     ];
     fhir:HumanName.prefix [
       fhir:value "Mrs.";
       fhir:index 0     ]
  ]; # 
  fhir:RelatedPerson.telecom [
     fhir:index 0;
     fhir:ContactPoint.system [ fhir:value "phone" ];
     fhir:ContactPoint.value [ fhir:value "0491 579 212" ];
     fhir:ContactPoint.use [ fhir:value "mobile" ]
  ]. # 

# - ontology header ------------------------------------------------------------

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.