@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Practitioner; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "brown-robert"]; fhir:Resource.meta [ fhir:Meta.profile [ fhir:value "http://ns.electronichealth.net.au/fhir/StructureDefinition/dh-practitioner-core-1"; fhir:index 0; fhir:link ] ]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "\n Dr. Robert Brown\n \n \n HPI-I\n 8003614900041243\n \n \n Phone\n 0491 578 888\n \n \n Fax\n (02) 5550 9994\n \n \n Address\n 1342 Sydney St, Randwick, NSW, 2031\n \n \n " ]; fhir:Practitioner.identifier [ fhir:index 0; fhir:Identifier.type [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0203" ]; fhir:Coding.code [ fhir:value "NPI" ]; fhir:Coding.display [ fhir:value "National provider identifier" ] ]; fhir:CodeableConcept.text [ fhir:value "HPI-I" ] ]; fhir:Identifier.system [ fhir:value "http://ns.electronichealth.net.au/id/hi/hpii/1.0" ]; fhir:Identifier.value [ fhir:value "8003614900041243" ] ]; fhir:Practitioner.name [ fhir:index 0; fhir:HumanName.use [ fhir:value "usual" ]; fhir:HumanName.family [ fhir:value "Brown" ]; fhir:HumanName.given [ fhir:value "Robert"; fhir:index 0 ]; fhir:HumanName.prefix [ fhir:value "Dr."; fhir:index 0 ] ]; fhir:Practitioner.telecom [ fhir:index 0; fhir:ContactPoint.system [ fhir:value "phone" ]; fhir:ContactPoint.value [ fhir:value "0491 578 888" ]; fhir:ContactPoint.use [ fhir:value "mobile" ] ], [ fhir:index 1; fhir:ContactPoint.system [ fhir:value "fax" ]; fhir:ContactPoint.value [ fhir:value "(02) 5550 9994" ]; fhir:ContactPoint.use [ fhir:value "work" ] ]; fhir:Practitioner.address [ fhir:index 0; fhir:Address.use [ fhir:value "work" ]; fhir:Address.line [ fhir:value "1342 Sydney St"; fhir:index 0 ]; fhir:Address.city [ fhir:value "Randwick" ]; fhir:Address.state [ fhir:value "NSW" ]; fhir:Address.postalCode [ fhir:value "2031" ]; fhir:Address.country [ fhir:value "AU" ] ] . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl . # -------------------------------------------------------------------------------------