@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Location; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "example1"]; fhir:Resource.meta [ fhir:Meta.profile [ fhir:value "http://hl7.org.au/fhir/StructureDefinition/au-location"; fhir:index 0; fhir:link ] ]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.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:Location.status [ fhir:value "active"]; fhir:Location.address [ fhir:Address.use [ fhir:value "work" ]; fhir:Address.line [ fhir:value "33 Slobodian Street"; fhir:index 0 ]; fhir:Address.city [ fhir:value "Albion" ]; fhir:Address.state [ fhir:value "QLD" ]; fhir:Address.postalCode [ fhir:value "4010" ]; 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:Coding.display [ fhir:value "Site" ] ] ] . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl . # -------------------------------------------------------------------------------------