@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix sct: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Location; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "nsw-hospital"]; 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 "nsw-hospital"

Profile: ADHA Core Location

status: active

name: NSW Hospital

mode: instance

type: Hospital (RoleCode#HOSP; SNOMED CT#22232009)

telecom: https://www.health.nsw.example.org/nsw-hospital, ph: (02) 5550 4444

address: 2325 Rocklands Rd, North Sydney NSW 2060

physicalType: Site (Location type#si)

managingOrganization: Organization/nsw-hospital "NSW Hospital"

" ]; fhir:Location.status [ fhir:value "active"]; fhir:Location.name [ fhir:value "NSW Hospital"]; 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 "HOSP" ]; fhir:Coding.display [ fhir:value "Hospital" ] ], [ fhir:index 1; a sct:22232009; fhir:Coding.system [ fhir:value "http://snomed.info/sct" ]; fhir:Coding.code [ fhir:value "22232009" ]; fhir:Coding.display [ fhir:value "Hospital" ] ] ]; fhir:Location.telecom [ fhir:index 0; fhir:ContactPoint.system [ fhir:value "url" ]; fhir:ContactPoint.value [ fhir:value "https://www.health.nsw.example.org/nsw-hospital" ] ], [ fhir:index 1; fhir:ContactPoint.system [ fhir:value "phone" ]; fhir:ContactPoint.value [ fhir:value "(02) 5550 4444" ] ]; fhir:Location.address [ fhir:Address.type [ fhir:value "physical" ]; fhir:Address.text [ fhir:value "2325 Rocklands Rd, North Sydney NSW 2060" ]; fhir:Address.line [ fhir:value "2325 Rocklands Rd"; fhir:index 0 ]; fhir:Address.city [ fhir:value "North Sydney" ]; fhir:Address.state [ fhir:value "NSW" ]; fhir:Address.postalCode [ fhir:value "2060" ]; fhir:Address.country [ fhir:value "AU" ] ]; fhir:Location.physicalType [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/location-physical-type" ]; fhir:Coding.code [ fhir:value "si" ]; fhir:Coding.display [ fhir:value "Site" ] ] ]; fhir:Location.managingOrganization [ fhir:link ; fhir:Reference.reference [ fhir:value "Organization/nsw-hospital" ] ] . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl . # -------------------------------------------------------------------------------------