@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Practitioner ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "Example1"] ; # fhir:meta [ fhir:profile ( [ fhir:v "http://hl7.org/fhir/us/core/StructureDefinition/us-core-practitioner"^^xsd:anyURI ; fhir:link ] [ fhir:v "https://docs.mydata.athenahealth.com/fhir-r4/StructureDefinition/athena-practitioner-profile"^^xsd:anyURI ; fhir:link ] ) ] ; # fhir:text [ fhir:status [ fhir:v "generated" ] ; fhir:div "

Generated Narrative: Practitioner Example1

identifier: Person number/442, National provider identifier/123456789, Tax ID number/2222222222

active: true

name: Harry S. Winston

telecom: ph: 1111111111(Work), ph: 5032332233(Mobile)

address: 10288 SW 43rd Ave Suite 400 Portland OR 97202 USA

" ] ; # fhir:identifier ( [ fhir:type [ fhir:coding ( [ fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ; fhir:code [ fhir:v "PN" ] ] ) ] ; fhir:system [ fhir:v "https://docs.mydata.athenahealth.com/fhir-r4/athenaFlex/namingsystem/DOCTORFACILITYID/1000-4-9390042"^^xsd:anyURI ] ; fhir:value [ fhir:v "442" ] ] [ fhir:type [ fhir:coding ( [ fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ; fhir:code [ fhir:v "NPI" ] ] ) ] ; fhir:system [ fhir:v "http://hl7.org/fhir/sid/us-npi"^^xsd:anyURI ] ; fhir:value [ fhir:v "123456789" ] ] [ fhir:type [ fhir:coding ( [ fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ; fhir:code [ fhir:v "TAX" ] ] ) ] ; fhir:system [ fhir:v "http://hl7.org/fhir/sid/us-tin"^^xsd:anyURI ] ; fhir:value [ fhir:v "2222222222" ] ] ) ; # fhir:active [ fhir:v "true"^^xsd:boolean] ; # fhir:name ( [ fhir:family [ fhir:v "Winston" ] ; fhir:given ( [ fhir:v "Harry" ] [ fhir:v "S." ] ) ; fhir:prefix ( [ fhir:v "Dr." ] ) ; fhir:suffix ( [ fhir:v "MD" ] ) ] ) ; # fhir:telecom ( [ fhir:system [ fhir:v "phone" ] ; fhir:value [ fhir:v "1111111111" ] ; fhir:use [ fhir:v "work" ] ] [ fhir:system [ fhir:v "phone" ] ; fhir:value [ fhir:v "5032332233" ] ; fhir:use [ fhir:v "mobile" ] ] ) ; # fhir:address ( [ fhir:line ( [ fhir:v "10288 SW 43rd Ave" ] [ fhir:v "Suite 400" ] ) ; fhir:city [ fhir:v "Portland" ] ; fhir:state [ fhir:v "OR" ] ; fhir:postalCode [ fhir:v "97202" ] ; fhir:country [ fhir:v "USA" ] ] ) . # # -------------------------------------------------------------------------------------