@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Device ; fhir:nodeRole fhir:treeRoot ; fhir:Resource.id [ fhir:value "ExampleRemovableProsthesis"] ; fhir:Resource.meta [ fhir:Meta.profile [ fhir:value "https://fhir.cognovis.de/dental/StructureDefinition/dental-prosthesis" ; fhir:index 0 ; fhir:link ] ] ; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ] ; fhir:Narrative.div "

Generated Narrative: Device ExampleRemovableProsthesis

identifier: https://example-dental-practice.de/device/PROSTHESIS-2024-017

status: Active

type: Teilprothese

patient: Friedrich Hartmann (official) Male, DoB: 1958-11-22

" ] ; fhir:Device.identifier [ fhir:index 0 ; fhir:Identifier.system [ fhir:value "https://example-dental-practice.de/device" ] ; fhir:Identifier.value [ fhir:value "PROSTHESIS-2024-017" ] ] ; fhir:Device.status [ fhir:value "active"] ; fhir:Device.type [ fhir:CodeableConcept.coding [ fhir:index 0 ; fhir:Coding.system [ fhir:value "https://fhir.cognovis.de/dental/CodeSystem/restoration-type" ] ; fhir:Coding.code [ fhir:value "teilprothese" ] ] ] ; fhir:Device.patient [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/pat-beihilfe-01" ] ] . # - ontology header ------------------------------------------------------------ a owl:Ontology ; owl:imports fhir:fhir.ttl . # -------------------------------------------------------------------------------------