@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Patient ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "mhr-craig-daniel"] ; # fhir:meta [ fhir:profile ( [ fhir:v "http://ns.electronichealth.net.au/fhir/StructureDefinition/dh-patient-core-1"^^xsd:anyURI ; fhir:link ] ) ] ; # fhir:text [ fhir:status [ fhir:v "generated" ] ; fhir:div "\n \n \n NAME\n Mr Daniel CRAIG\n \n \n IHI NUMBER\n 8003608333563104\n \n \n DOB\n 9 April 1949\n \n \n GENDER\n M\n \n \n INDIGENOUS STATUS\n Not stated/inadequately described\n \n \n " ] ; # fhir:extension ( [ fhir:url [ fhir:v "http://hl7.org.au/fhir/StructureDefinition/indigenous-status"^^xsd:anyURI ] ; fhir:value [ a fhir:Coding ; fhir:system [ fhir:v "https://healthterminologies.gov.au/fhir/CodeSystem/australian-indigenous-status-1"^^xsd:anyURI ] ; fhir:code [ fhir:v "9" ] ; fhir:display [ fhir:v "Not stated/inadequately described" ] ] ] ) ; # 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 "8003608333563104" ] ] ) ; # fhir:name ( [ fhir:use [ fhir:v "usual" ] ; fhir:family [ fhir:v "CRAIG" ] ; fhir:given ( [ fhir:v "Daniel" ] ) ; fhir:prefix ( [ fhir:v "Mr" ] ) ] ) ; # fhir:gender [ fhir:v "male"] ; # fhir:birthDate [ fhir:v "1949-04-09"^^xsd:date] . # # -------------------------------------------------------------------------------------