@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Location ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "example1"] ; # 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 "example1"

Profile: AU Base Location

status: active

address: 33 Slobodian Street Albion QLD 4010 AU (WORK)

physicalType: Site (Location type#si)

" ] ; # fhir:status [ fhir:v "active"] ; # fhir:address [ fhir:use [ fhir:v "work" ] ; fhir:line ( [ 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 "si" ] ; fhir:display [ fhir:v "Site" ] ] ) ] . # # -------------------------------------------------------------------------------------