@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Location; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "hi-testdata-dental"]; fhir:Resource.meta [ fhir:Meta.profile [ fhir:value "http://ns.electronichealth.net.au/fhir/StructureDefinition/dh-location-core-1"; fhir:index 0; fhir:link ] ]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "

Generated Narrative: Location

Resource Location "hi-testdata-dental"

Profile: ADHA Core Location

mode: instance

type: Provider's Office (RoleCode#PROFF)

address: 7A Henson Pl SALE VIC 3850 AU

" ]; fhir:Location.mode [ fhir:value "instance"]; fhir:Location.type [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-RoleCode" ]; fhir:Coding.code [ fhir:value "PROFF" ]; fhir:Coding.display [ fhir:value "Provider's Office" ] ] ]; fhir:Location.address [ fhir:Address.line [ fhir:value "7A Henson Pl"; fhir:index 0 ]; fhir:Address.city [ fhir:value "SALE" ]; fhir:Address.state [ fhir:value "VIC" ]; fhir:Address.postalCode [ fhir:value "3850" ]; fhir:Address.country [ fhir:value "AU" ] ] . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl . # -------------------------------------------------------------------------------------