@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Patient ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "patient-messaging-address"] ; # fhir:text [ fhir:status [ fhir:v "generated" ] ; fhir:div "

John Doe male, DoB: 1998-01-01


Messaging Address:
  • provider: MedicalObjects
  • value: valueMO
" ] ; # fhir:extension ( [ fhir:extension ( [ fhir:url [ fhir:v "provider"^^xsd:anyURI ] ; fhir:value [ fhir:v "MedicalObjects" ] ] [ fhir:url [ fhir:v "value"^^xsd:anyURI ] ; fhir:value [ fhir:v "valueMO" ] ] ) ; fhir:url [ fhir:v "http://hl7.org.nz/fhir/StructureDefinition/messaging-address"^^xsd:anyURI ] ] ) ; # fhir:name ( [ fhir:text [ fhir:v "John Doe" ] ; fhir:family [ fhir:v "Doe" ] ; fhir:given ( [ fhir:v "John" ] ) ] ) ; # fhir:gender [ fhir:v "male"] ; # fhir:birthDate [ fhir:v "1998-01-01"^^xsd:date] . # # -------------------------------------------------------------------------------------