@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://digitalhealth.gov.au/fhir/cc/Location/amenity-example> a fhir:Location ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "amenity-example"] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "extensions" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Location amenity-example</b></p><a name=\"amenity-example\"> </a><a name=\"hcamenity-example\"> </a><p><b>Amenity</b>: <span title=\"Codes:{https://healthterminologies.gov.au/fhir/CodeSystem/facility-amenity-1 accessibleParking}\">Accessible Parking</span></p><p><b>status</b>: Active</p><p><b>name</b>: Example Clinic Location</p><p><b>description</b>: A sample clinic location with wheelchair access.</p><p><b>mode</b>: Instance</p><p><b>type</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/v3-RoleCode HOSP}\">Hospital</span></p><p><b>telecom</b>: <a href=\"tel:+61322223333\">+61 3 2222 3333</a></p><p><b>address</b>: 100 Example Blvd Perth WA 6000 </p></div>"
  ] ;
  fhir:DomainResource.extension [
     fhir:index 0 ;
     fhir:Extension.url [ fhir:value "http://digitalhealth.gov.au/fhir/cc/StructureDefinition/amenity" ] ;
     fhir:Extension.valueCodeableConcept [
       fhir:CodeableConcept.coding [
         fhir:index 0 ;
         fhir:Coding.system [ fhir:value "https://healthterminologies.gov.au/fhir/CodeSystem/facility-amenity-1" ] ;
         fhir:Coding.code [ fhir:value "accessibleParking" ] ;
         fhir:Coding.display [ fhir:value "Accessible Parking" ]
       ]
     ]
  ] ;
  fhir:Location.status [ fhir:value "active"] ;
  fhir:Location.name [ fhir:value "Example Clinic Location"] ;
  fhir:Location.description [ fhir:value "A sample clinic location with wheelchair access."] ;
  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:Location.telecom [
     fhir:index 0 ;
     fhir:ContactPoint.system [ fhir:value "phone" ] ;
     fhir:ContactPoint.value [ fhir:value "+61 3 2222 3333" ]
  ] ;
  fhir:Location.address [
     fhir:Address.line [
       fhir:value "100 Example Blvd" ;
       fhir:index 0
     ] ;
     fhir:Address.city [ fhir:value "Perth" ] ;
     fhir:Address.state [ fhir:value "WA" ] ;
     fhir:Address.postalCode [ fhir:value "6000" ]
  ] .

# - ontology header ------------------------------------------------------------

<http://digitalhealth.gov.au/fhir/cc/Location/amenity-example.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl .

# -------------------------------------------------------------------------------------

