@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Patient ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "patient-deceased-information-source"] ; # fhir:meta [ fhir:profile ( [ fhir:v "http://hl7.org.nz/fhir/StructureDefinition/NzPatient"^^xsd:anyURI ; fhir:link ] ) ] ; # fhir:text [ fhir:status [ fhir:v "generated" ] ; fhir:div "

John Doe male, DoB Unknown


Deceased:1998-01-01
" ] ; # fhir:name ( [ fhir:text [ fhir:v "John Doe" ] ; fhir:family [ fhir:v "Doe" ] ; fhir:given ( [ fhir:v "John" ] ) ] ) ; # fhir:gender [ fhir:v "male"] ; # fhir:deceased [ fhir:v "1998-01-01"^^xsd:date ; fhir:extension ( [ fhir:url [ fhir:v "http://hl7.org.nz/fhir/StructureDefinition/information-source"^^xsd:anyURI ] ; fhir:value [ a fhir:CodeableConcept ; fhir:coding ( [ fhir:system [ fhir:v "https://standards.digital.health.nz/ns/information-source-code"^^xsd:anyURI ] ; fhir:code [ fhir:v "PPRT" ] ; fhir:display [ fhir:v "Passport" ] ] ) ] ] ) ] . # # -------------------------------------------------------------------------------------