snikproject / ontology

Public SNIK Ontology. An ontology of information management in hospitals.
https://snikproject.github.io/ontology/
Other
10 stars 1 forks source link

bb:QualityOfHISArchitecture rdfs:subClassOf bb:QualityOfHISStructures #370

Closed BirgitSNIK closed 4 years ago

BirgitSNIK commented 4 years ago

Problem with the edge bb:QualityOfHISArchitecture rdfs:subClassOf bb:QualityOfHISStructures (OntoWiki URL): Noch so ein Fall: statt subClassOf bitte entityTypeComponent. Gilt auch für "Quality of Data" entityTypeComponent "Quality of HIS Structures" und "Quality of Computerbased Application Compnets and ..." entityTypeComponent "Quality of HIS Structures"

KonradHoeffner commented 4 years ago
SPARQL
DELETE DATA
{
 GRAPH <http://www.snik.eu/ontology/bb>
 {
  bb:QualityOfHISArchitecture rdfs:subClassOf bb:QualityOfHISStructures.
  bb:QualityOfData rdfs:subClassOf bb:QualityOfHISStructures.
  bb:QualityOfComputerBasedApplicationComponentsAndTheirIntegration rdfs:subClassOf bb:QualityOfHISStructures.
 }
}
INSERT DATA
{
 GRAPH <http://www.snik.eu/ontology/bb>
 {
   bb:QualityOfHISArchitecture rdfs:subClassOf bb:InformationManagementEntityType.
   bb:QualityOfData rdfs:subClassOf bb:InformationManagementEntityType.
   bb:QualityOfComputerBasedApplicationComponentsAndTheirIntegration rdfs:subClassOf bb:InformationManagementEntityType.

   bb:QualityOfHISStructures meta:entityTypeComponent bb:QualityOfHISArchitecture.
   bb:QualityOfHISStructures meta:entityTypeComponent bb:QualityOfData.
   bb:QualityOfHISStructures meta:entityTypeComponent bb:QualityOfComputerBasedApplicationComponentsAndTheirIntegration.
 }
}