@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix sct: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:RelatedPerson ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "example1"] ; # fhir:meta [ fhir:profile ( [ fhir:v "http://hl7.org.au/fhir/StructureDefinition/au-relatedperson"^^xsd:anyURI ; fhir:link ] ) ] ; # fhir:text [ fhir:status [ fhir:v "generated" ] ; fhir:div "

Generated Narrative: RelatedPerson

Resource RelatedPerson "example1"

Profile: AU Base Related Person

active: true

patient: Patient/example1 " DAN"

relationship: Caregiver (SNOMED CT#133932002)

name: Mary Smith

telecom: msmith@amail.example.com, ph: (02)55501234(HOME)

gender: female

address: 255 Gadsby Street Blacktown NSW 2148 AU

" ] ; # fhir:active [ fhir:v "true"^^xsd:boolean] ; # fhir:patient [ fhir:link ; fhir:reference [ fhir:v "Patient/example1" ] ] ; # fhir:relationship ( [ fhir:coding ( [ a sct:133932002 ; fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ; fhir:code [ fhir:v "133932002" ] ; fhir:display [ fhir:v "Caregiver" ] ] ) ] ) ; # fhir:name ( [ fhir:family [ fhir:v "Smith" ] ; fhir:given ( [ fhir:v "Mary" ] ) ] ) ; # fhir:telecom ( [ fhir:system [ fhir:v "email" ] ; fhir:value [ fhir:v "msmith@amail.example.com" ] ; fhir:use [ fhir:v "home" ] ] [ fhir:system [ fhir:v "phone" ] ; fhir:value [ fhir:v "(02)55501234" ] ; fhir:use [ fhir:v "home" ] ] ) ; # fhir:gender [ fhir:v "female"] ; # fhir:address ( [ fhir:line ( [ fhir:v "255 Gadsby Street" ] ) ; fhir:city [ fhir:v "Blacktown" ] ; fhir:state [ fhir:v "NSW" ] ; fhir:postalCode [ fhir:v "2148" ] ; fhir:country [ fhir:v "AU" ] ] ) . # # -------------------------------------------------------------------------------------