@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Location ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "example2"] ; # fhir:meta [ fhir:profile ( [ fhir:v "http://hl7.org.au/fhir/StructureDefinition/au-location"^^xsd:anyURI ; fhir:link ] ) ] ; # fhir:text [ fhir:status [ fhir:v "generated" ] ; fhir:div "

Generated Narrative: Location

Resource Location "example2"

Profile: AU Base Location

identifier: NATA Site Number: 162899, LSPN: 123333

status: active

address: Level 1, Green Building, Albion Hospital, QLD

physicalType: Level (Location type#lvl)

partOf: Location/example1

" ] ; # fhir:identifier ( [ fhir:type [ fhir:coding ( [ fhir:system [ fhir:v "http://terminology.hl7.org.au/CodeSystem/v2-0203"^^xsd:anyURI ] ; fhir:code [ fhir:v "NATAS" ] ; fhir:display [ fhir:v "NATA Site Number" ] ] ) ; fhir:text [ fhir:v "NATA Site Number" ] ] ; fhir:system [ fhir:v "http://hl7.org.au/id/nata-site"^^xsd:anyURI ] ; fhir:value [ fhir:v "162899" ] # In Australia NATA numbers are an\n incremental number that have been incremented to 5 digits, this example uses a fictional\n NATA number from 100,000 + to ensure no conflict with real world values ] [ fhir:type [ fhir:coding ( [ fhir:system [ fhir:v "http://terminology.hl7.org.au/CodeSystem/v2-0203"^^xsd:anyURI ] ; fhir:code [ fhir:v "LSPN" ] ; fhir:display [ fhir:v "Location Specific Practice Number" ] ] ) ; fhir:text [ fhir:v "LSPN" ] ] ; fhir:system [ fhir:v "http://ns.electronichealth.net.au/id/location-specific-practice-number"^^xsd:anyURI ] ; fhir:value [ fhir:v "123333" ] # In Australia LSPNs are an\n incremental number that have been incremented to 5 digits, this example uses a fictional\n LSPN from 100,000 + to ensure no conflict with real world values ] ) ; # fhir:status [ fhir:v "active"] ; # fhir:address [ fhir:type [ fhir:v "physical" ] ; fhir:text [ fhir:v "Level 1, Green Building, Albion Hospital, QLD" ] ; fhir:line ( [ fhir:v "Level 1, Green Building" ] [ fhir:v "33 Slobodian Street" ] ) ; fhir:city [ fhir:v "Albion" ] ; fhir:state [ fhir:v "QLD" ] ; fhir:postalCode [ fhir:v "4010" ] ; fhir:country [ fhir:v "AU" ] ] ; # fhir:physicalType [ fhir:coding ( [ fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/location-physical-type"^^xsd:anyURI ] ; fhir:code [ fhir:v "lvl" ] ; fhir:display [ fhir:v "Level" ] ] ) ] ; # fhir:partOf [ fhir:link ; fhir:reference [ fhir:v "Location/example1" ] ] . # # -------------------------------------------------------------------------------------