@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Device ; fhir:nodeRole fhir:treeRoot ; fhir:Resource.id [ fhir:value "ExamplePeriodontalLaserDevice"] ; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ] ; fhir:Narrative.div "

Generated Narrative: Device ExamplePeriodontalLaserDevice

identifier: https://example-dental-practice.de/device/LASER-2026-01

status: Active

type: Dental laser device

" ] ; fhir:Device.identifier [ fhir:index 0 ; fhir:Identifier.system [ fhir:value "https://example-dental-practice.de/device" ] ; fhir:Identifier.value [ fhir:value "LASER-2026-01" ] ] ; fhir:Device.status [ fhir:value "active"] ; fhir:Device.type [ fhir:CodeableConcept.text [ fhir:value "Dental laser device" ] ] . # - ontology header ------------------------------------------------------------ a owl:Ontology ; owl:imports fhir:fhir.ttl . # -------------------------------------------------------------------------------------