@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Practitioner ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "bradley-jill"] ; # Example adapted from PACIO Speech Language Swallowing Cognitive Communication and Hearing (SPLASCH) Implementation Guide # Practitioner-JillBradley fhir:meta [ fhir:profile ( [ fhir:v "http://hl7.org.au/fhir/core/StructureDefinition/au-core-practitioner"^^xsd:anyURI ; fhir:link ] ) ] ; # fhir:text [ fhir:status [ fhir:v "generated" ] ; fhir:div "

Generated Narrative: Practitioner

Resource Practitioner "bradley-jill"

Profile: AU Core Practitioner

active: true

name: Jill Bradley

telecom: ph: 0491 570 006(MOBILE)

gender: female

" ] ; # fhir:active [ fhir:v "true"^^xsd:boolean] ; # fhir:name ( [ fhir:text [ fhir:v "Jill Bradley" ] ; fhir:family [ fhir:v "Bradley" ] ; fhir:given ( [ fhir:v "Jill" ] ) ] ) ; # fhir:telecom ( [ fhir:system [ fhir:v "phone" ] ; fhir:value [ fhir:v "0491 570 006" ] ; fhir:use [ fhir:v "mobile" ] ] ) ; # fhir:gender [ fhir:v "female"] . # # -------------------------------------------------------------------------------------