@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Observation ; fhir:nodeRole fhir:treeRoot ; fhir:Resource.id [ fhir:value "ExampleSuprastructureScrewLoosening"] ; fhir:Resource.meta [ fhir:Meta.profile [ fhir:value "https://fhir.cognovis.de/dental/StructureDefinition/suprastructure-finding" ; fhir:index 0 ; fhir:link ] ] ; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ] ; fhir:Narrative.div "" ] ; 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.coding [ fhir:index 0 ; fhir:Coding.system [ fhir:value "https://fhir.cognovis.de/dental/CodeSystem/dental-assessment-type" ] ; fhir:Coding.code [ fhir:value "prosthetic-device-finding" ] ] ] ; fhir:Observation.subject [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/pat-beihilfe-01" ] ] ; fhir:Observation.focus [ fhir:index 0 ; fhir:link ; fhir:Reference.reference [ fhir:value "Device/ExampleImplantCrown36" ] ] ; fhir:Observation.effectiveDateTime [ fhir:value "2026-07-27"^^xsd:date] ; fhir:Observation.performer [ fhir:index 0 ; fhir:link ; fhir:Reference.reference [ fhir:value "Organization/org-dental-mvz" ] ] ; fhir:Observation.valueCodeableConcept [ fhir:CodeableConcept.coding [ fhir:index 0 ; fhir:Coding.system [ fhir:value "https://fhir.cognovis.de/dental/CodeSystem/prosthetic-device-finding" ] ; fhir:Coding.code [ fhir:value "screw-loosening" ] ] ] ; fhir:Observation.bodySite [ fhir:CodeableConcept.coding [ fhir:index 0 ; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/ex-tooth" ] ; fhir:Coding.code [ fhir:value "36" ] ] ] . # - ontology header ------------------------------------------------------------ a owl:Ontology ; owl:imports fhir:fhir.ttl . # -------------------------------------------------------------------------------------