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

Generated Narrative: Observation ExampleOsasDentalFinding

status: Final

category: Dental

code: Dental support and retention assessment

subject: Charlotte von Hohenstein (official) Female, DoB: 1975-09-03

effective: 2026-07-22

value: Sufficient support and retention available

" ] ; fhir:Observation.status [ fhir:value "final"] ; fhir:Observation.category [ fhir:index 0 ; fhir:CodeableConcept.coding [ fhir:index 0 ; fhir:Coding.system [ fhir:value "https://fhir.cognovis.de/dental/CodeSystem/dental-category" ] ; fhir:Coding.code [ fhir:value "dental" ] ; fhir:Coding.display [ fhir:value "Dental" ] ] ] ; fhir:Observation.code [ fhir:CodeableConcept.text [ fhir:value "Dental support and retention assessment" ] ] ; fhir:Observation.subject [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/pat-pkv-01" ] ] ; fhir:Observation.effectiveDateTime [ fhir:value "2026-07-22"^^xsd:date] ; fhir:Observation.valueCodeableConcept [ fhir:CodeableConcept.text [ fhir:value "Sufficient support and retention available" ] ] . # - ontology header ------------------------------------------------------------ a owl:Ontology ; owl:imports fhir:fhir.ttl . # -------------------------------------------------------------------------------------