@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@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:id [ fhir:v "amenity-example"] ; # 
  fhir:text [
     fhir:status [ fhir:v "extensions" ] ;
     fhir:div [ fhir:v "<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>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:extension ( [
     fhir:url [ fhir:v "http://digitalhealth.gov.au/fhir/cc/StructureDefinition/amenity"^^xsd:anyURI ] ;
     fhir:value [
       a fhir:CodeableConcept ;
       fhir:coding ( [
         fhir:system [ fhir:v "https://healthterminologies.gov.au/fhir/CodeSystem/facility-amenity-1"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "accessibleParking" ] ;
         fhir:display [ fhir:v "Accessible Parking" ]
       ] )
     ]
  ] ) ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:name [ fhir:v "Example Clinic Location"] ; # 
  fhir:description [ fhir:v "A sample clinic location with wheelchair access."] ; # 
  fhir:mode [ fhir:v "instance"] ; # 
  fhir:type ( [
     fhir:coding ( [
       fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-RoleCode"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "HOSP" ] ;
       fhir:display [ fhir:v "Hospital" ]
     ] )
  ] ) ; # 
  fhir:telecom ( [
     fhir:system [ fhir:v "phone" ] ;
     fhir:value [ fhir:v "+61 3 2222 3333" ]
  ] ) ; # 
  fhir:address [
     fhir:line ( [ fhir:v "100 Example Blvd" ] ) ;
     fhir:city [ fhir:v "Perth" ] ;
     fhir:state [ fhir:v "WA" ] ;
     fhir:postalCode [ fhir:v "6000" ]
  ] . # 

# -------------------------------------------------------------------------------------

