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

Profile: AU Base Location

name: Telehealth

mode: kind

type: Virtual (Location Type AU#VI)

physicalType: Virtual (Location Type (Physical) AU#vi)

" ]; fhir:Location.name [ fhir:value "Telehealth"]; fhir:Location.mode [ fhir:value "kind"]; fhir:Location.type [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org.au/CodeSystem/location-type" ]; fhir:Coding.code [ fhir:value "VI" ] ] ]; fhir:Location.physicalType [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org.au/CodeSystem/location-physical-type" ]; fhir:Coding.code [ fhir:value "vi" ]; fhir:Coding.display [ fhir:value "Virtual" ] ] ] . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl . # -------------------------------------------------------------------------------------