AU Base Implementation Guide 4.2.2-preview - Preview
Publication Build: This will be filled in by the publication tooling
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 "example2"] ; # fhir:meta [ ( fhir:profile [ fhir:v "http://hl7.org.au/fhir/StructureDefinition/au-relatedperson"^^xsd:anyURI ; fhir:link <http://hl7.org.au/fhir/StructureDefinition/au-relatedperson> ] ) ] ; # fhir:text [ fhir:status [ fhir:v "generated" ] ; fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: RelatedPerson example2</b></p><a name=\"example2\"> </a><a name=\"hcexample2\"> </a><a name=\"example2-en-AU\"> </a><p><b>identifier</b>: Medicare Number/22968184811 (, period: (?) --> 2022-12)</p><p><b>patient</b>: <a href=\"Patient-example4.html\">Suzanne Simmons Female, DoB: 2008-08-08 ( Medical record number)</a></p><p><b>relationship</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/v3-RoleCode MTH}\">mother</span></p><p><b>name</b>: Sarah Simmons </p><p><b>telecom</b>: <a href=\"mailto:ssimmons@amail.example.com\">ssimmons@amail.example.com</a>, ph: (03) 5550 6677(Home)</p><p><b>gender</b>: Female</p><p><b>birthDate</b>: 1977-09-07</p><p><b>address</b>: 55 Sarah Street Strahan TAS 7468 AU </p></div>" ] ; # fhir:identifier ( [ fhir:type [ ( fhir:coding [ fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ; fhir:code [ fhir:v "MC" ] ; fhir:display [ fhir:v "Patient's Medicare number" ] ] ) ; fhir:text [ fhir:v "Medicare Number" ] ] ; fhir:system [ fhir:v "http://ns.electronichealth.net.au/id/medicare-number"^^xsd:anyURI ] ; fhir:value [ fhir:v "22968184811" ] ; fhir:period [ fhir:end [ fhir:v "2022-12"^^xsd:gYearMonth ] ] ] ) ; # fhir:patient [ fhir:reference [ fhir:v "Patient/example4" ] ] ; # fhir:relationship ( [ ( fhir:coding [ fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-RoleCode"^^xsd:anyURI ] ; fhir:code [ fhir:v "MTH" ] ; fhir:display [ fhir:v "mother" ] ] ) ] ) ; # fhir:name ( [ fhir:family [ fhir:v "Simmons" ] ; ( fhir:given [ fhir:v "Sarah" ] ) ] ) ; # fhir:telecom ( [ fhir:system [ fhir:v "email" ] ; fhir:value [ fhir:v "ssimmons@amail.example.com" ] ; fhir:use [ fhir:v "home" ] ] [ fhir:system [ fhir:v "phone" ] ; fhir:value [ fhir:v "(03) 5550 6677" ] ; fhir:use [ fhir:v "home" ] ] ) ; # fhir:gender [ fhir:v "female"] ; # fhir:birthDate [ fhir:v "1977-09-07"^^xsd:date] ; # fhir:address ( [ ( fhir:line [ fhir:v "55 Sarah Street" ] ) ; fhir:city [ fhir:v "Strahan" ] ; fhir:state [ fhir:v "TAS" ] ; fhir:postalCode [ fhir:v "7468" ] ; fhir:country [ fhir:v "AU" ] ] ) . #