@prefix fhir: .
@prefix owl: .
@prefix rdfs: .
@prefix xsd: .
# - resource -------------------------------------------------------------------
a fhir:RelatedPerson ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "mhr-smith-oliver"] ; #
fhir:meta [
fhir:profile ( [
fhir:v "http://ns.electronichealth.net.au/fhir/StructureDefinition/dh-relatedperson-core-1"^^xsd:anyURI ;
fhir:link
] )
] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "\n
\n \n NAME | \n Mr. Oliver SMITH | \n
\n \n IHI NUMBER | \n 8003608833357361 | \n
\n \n RELATED TO | \n Child of Sally FIELD | \n
\n \n GENDER | \n Male | \n
\n
\n
"
] ; #
fhir:identifier ( [
fhir:use [ fhir:v "official" ] ;
fhir:type [
fhir:coding ( [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ;
fhir:code [ fhir:v "NI" ] ;
fhir:display [ fhir:v "National unique individual identifier" ]
] )
] ;
fhir:system [ fhir:v "http://ns.electronichealth.net.au/id/hi/ihi/1.0"^^xsd:anyURI ] ;
fhir:value [ fhir:v "8003608833357361" ]
] ) ; #
fhir:patient [
fhir:link ;
fhir:reference [ fhir:v "Patient/mhr-field-sally" ] ;
fhir:identifier [
fhir:type [
fhir:coding ( [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ;
fhir:code [ fhir:v "NI" ] ;
fhir:display [ fhir:v "National unique individual identifier" ]
] )
] ;
fhir:system [ fhir:v "http://ns.electronichealth.net.au/id/hi/ihi/1.0"^^xsd:anyURI ] ;
fhir:value [ fhir:v "8003608333563104" ]
]
] ; #
fhir:relationship ( [
fhir:coding ( [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-RoleCode"^^xsd:anyURI ] ;
fhir:code [ fhir:v "CHILD" ] ;
fhir:display [ fhir:v "child" ]
] )
] ) ; #
fhir:name ( [
fhir:use [ fhir:v "usual" ] ;
fhir:family [ fhir:v "SMITH" ] ;
fhir:given ( [ fhir:v "Oliver" ] ) ;
fhir:prefix ( [ fhir:v "Mr." ] )
] ) ; #
fhir:gender [ fhir:v "male"] . #
# -------------------------------------------------------------------------------------