@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Location; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "example9"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "

Generated Narrative: Location

Resource Location \"example9\"

status: active

type: Nursing home (RoleCode#NCCF)

address: 713 Church Road Zillmere QLD 4034 AU

physicalType: Site (Location type#si)

managingOrganization: Organization/example5 \"The Corporation of the Synod of the Diocese of Nundah\"

" ]; fhir:Location.status [ fhir:value "active"]; 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 "NCCF" ] ]; fhir:CodeableConcept.text [ fhir:value "Nursing home" ] ]; fhir:Location.address [ fhir:Address.type [ fhir:value "physical" ]; fhir:Address.line [ fhir:value "713 Church Road"; fhir:index 0 ]; fhir:Address.city [ fhir:value "Zillmere" ]; fhir:Address.state [ fhir:value "QLD" ]; fhir:Address.postalCode [ fhir:value "4034" ]; 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:CodeableConcept.text [ fhir:value "Site" ] ]; fhir:Location.managingOrganization [ fhir:link ; fhir:Reference.reference [ fhir:value "Organization/example5" ] ] . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl . # -------------------------------------------------------------------------------------