AU Base Implementation Guide
6.0.1-ci-build - CI Build Australia flag

AU Base Implementation Guide, published by HL7 Australia. This guide is not an authorized publication; it is the continuous build for version 6.0.1-ci-build built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/hl7au/au-fhir-base/ and changes regularly. See the Directory of published versions

: Location - Leafy Grove Home for the Aged - TTL Representation

Page standards status: Informative

Raw ttl | Download


@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/Location/example8> a fhir:Location ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "example8"] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Location example8</b></p><a name=\"example8\"> </a><a name=\"hcexample8\"> </a><p><b>status</b>: Active</p><p><b>name</b>: Leafy Grove</p><p><b>type</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/v3-RoleCode NCCF}\">Nursing home</span></p><p><b>address</b>: 700 Church Road Zillmere QLD 4034 AU </p><p><b>physicalType</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/location-physical-type si}\">Site</span></p><p><b>managingOrganization</b>: <a href=\"Organization-example5.html\">Organization The Corporation of the Synod of the Diocese of Nundah</a></p></div>"
  ] ;
  fhir:Location.status [ fhir:value "active"] ;
  fhir:Location.name [ fhir:value "Leafy Grove"] ;
  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 "700 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 <http://hl7.org/fhir/Organization/example5> ;
     fhir:Reference.reference [ fhir:value "Organization/example5" ]
  ] .

<http://hl7.org/fhir/Organization/example5> a fhir:Organization .

# - ontology header ------------------------------------------------------------

<http://hl7.org/fhir/Location/example8.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Location/example8.ttl> .