snikproject / graph

Visualization of the snik-ontology.
http://www.snik.eu/graph
GNU General Public License v3.0
8 stars 3 forks source link

Visuelles Überlagern von Relationen zwischen den gleichen Knotenpaaren #143

Closed AlfredWinter closed 2 years ago

AlfredWinter commented 5 years ago

The edge "bb:ServerCluster meta:entityTypeComponent bb:Server" is incorrect.

Details Hier überlagern sich zwei Bezeichnungen für die Relation und man kann es nicht mehr lesen. Siehe auch #59 .AW

KonradHoeffner commented 5 years ago

There are only 190 node pairs with overlapping edges now:

select count(*)
{
select distinct ?s ?o
from <http://www.snik.eu/ontology>
{
?s ?p ?o.
?s ?q ?o.
?s a owl:Class.
?o a owl:Class.
filter(?p!=?q).
filter(isIRI(?o)).
filter(?p!=meta:subTopClass&&(?q!=meta:subTopClass))
}
}

From 10228 node pairs with edges:

select count(*)
{
select distinct ?s ?o
from <http://www.snik.eu/ontology>
{
?s ?p ?o.
?s a owl:Class.
?o a owl:Class.
}
}

So less than 2% of edges should have this problem now.

Update: There are also 75 cases with reversed directions:

select count(*)
{
select distinct ?s ?o
from <http://www.snik.eu/ontology>
{
?s ?p ?o.
?o ?q ?s.
?s a owl:Class.
?o a owl:Class.
filter(?p!=?q).
filter(isIRI(?o)).
filter(?p!=meta:subTopClass&&(?q!=meta:subTopClass))
}
}
KonradHoeffner commented 5 years ago

text-margin-x shifts along the x axis of the canvas and is thus not suitable. source-text-margin-x does not seem to shift anything, we probably don't have a source label.

As it seems to be a nontrivial time investment to fix this, wait first whether Franziska Jahns Meta Model property hierarchy will eliminate most of those cases.

KonradHoeffner commented 5 years ago

Alle Paare von Knoten, bei denen sich Kanten in Hin- und Rückrichtung überlappen:

Um die Tabelle voll zu sehen, bitte im Firefox https://userstyles.org/styles/97661/wide-my-github aktivieren

select distinct ?s ?o (GROUP_CONCAT(DISTINCT ?p; SEPARATOR=", ") AS ?hin) (GROUP_CONCAT(DISTINCT ?q; SEPARATOR=", ") AS ?zurueck)
from <http://www.snik.eu/ontology>
{
?s ?p ?o.
?o ?q ?s.
filter(?s<?o).
?s a owl:Class.
?o a owl:Class.
filter(?p!=?q).
filter(isIRI(?o)).
filter(?p!=meta:subTopClass&&(?q!=meta:subTopClass))
} group by ?s ?o
s o hin zurueck
http://www.snik.eu/ontology/bb/InternalQualityManagement http://www.snik.eu/ontology/bb/QualityManagement http://www.w3.org/2000/01/rdf-schema#subClassOf http://www.snik.eu/ontology/meta/functionComponent
http://www.snik.eu/ontology/ob/InformationManagement http://www.snik.eu/ontology/ob/OperationalManagementOfInformationSystems http://www.snik.eu/ontology/meta/functionComponent http://www.w3.org/2000/01/rdf-schema#subClassOf
http://www.snik.eu/ontology/it4it/Policy http://www.snik.eu/ontology/it4it/PolicyComponent http://www.snik.eu/ontology/it4it/keyDataObject http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/he/ItStrategie http://www.snik.eu/ontology/he/Unternehmensstrategie http://www.snik.eu/ontology/meta/isAssociatedWith, http://www.snik.eu/ontology/meta/isBasedOn http://www.snik.eu/ontology/meta/entityTypeComponent
http://www.snik.eu/ontology/it4it/ITInitiative http://www.snik.eu/ontology/it4it/ProjectComponent http://www.snik.eu/ontology/it4it/keyDataObject http://www.snik.eu/ontology/meta/isAssociatedWith, http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/it4it/EnterpriseArchitectureComponent http://www.snik.eu/ontology/it4it/ServiceArchitecture http://www.snik.eu/ontology/it4it/keyDataObject, http://www.snik.eu/ontology/meta/isAssociatedWith, http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses http://www.snik.eu/ontology/it4it/keyDataObject, http://www.snik.eu/ontology/meta/isAssociatedWith
http://www.snik.eu/ontology/bb/ProjectManagementBoard http://www.snik.eu/ontology/bb/RepresentativeOfHospitalDepartment http://www.snik.eu/ontology/meta/roleComponent http://www.snik.eu/ontology/meta/isevolved
http://www.snik.eu/ontology/he/Architektur http://www.snik.eu/ontology/he/Architekturprinzip http://www.snik.eu/ontology/meta/isBasedOn http://www.snik.eu/ontology/meta/isAssociatedWith
http://www.snik.eu/ontology/ob/Subsystem http://www.snik.eu/ontology/ob/System http://www.w3.org/2000/01/rdf-schema#subClassOf http://www.snik.eu/ontology/meta/entityTypeComponent
http://www.snik.eu/ontology/ob/Product http://www.snik.eu/ontology/ob/SoftwareProduct http://www.w3.org/2004/02/skos/core#related http://www.w3.org/2000/01/rdf-schema#subClassOf
http://www.snik.eu/ontology/bb/ProjectExecution http://www.snik.eu/ontology/ob/ProjectExecution http://www.w3.org/2004/02/skos/core#broadMatch http://www.w3.org/2004/02/skos/core#closeMatch
http://www.snik.eu/ontology/bb/InformationProcessing http://www.snik.eu/ontology/bb/NonComputerBasedInformationProcessing http://www.snik.eu/ontology/meta/functionComponent http://www.w3.org/2000/01/rdf-schema#subClassOf
http://www.snik.eu/ontology/bb/Monitoring http://www.snik.eu/ontology/bb/Management http://www.w3.org/2000/01/rdf-schema#subClassOf http://www.snik.eu/ontology/meta/functionComponent
http://www.snik.eu/ontology/ob/Sponsor http://www.snik.eu/ontology/ob/ProjectPlan http://www.snik.eu/ontology/ob/approves http://www.snik.eu/ontology/meta/roleComponent
http://www.snik.eu/ontology/ciox/Finanzwesensystem http://www.snik.eu/ontology/ciox/SAPFI http://www.snik.eu/ontology/meta/isBasedOn http://www.w3.org/1999/02/22-rdf-syntax-ns#type
http://www.snik.eu/ontology/bb/Vendor http://www.snik.eu/ontology/bb/ProjectManagementBoard http://www.snik.eu/ontology/meta/isevolved http://www.snik.eu/ontology/meta/roleComponent
http://www.snik.eu/ontology/bb/Planning http://www.snik.eu/ontology/bb/Management http://www.w3.org/2000/01/rdf-schema#subClassOf http://www.snik.eu/ontology/meta/functionComponent
http://www.snik.eu/ontology/it4it/PortfolioBacklogItem http://www.snik.eu/ontology/it4it/PortfolioDemandComponent http://www.snik.eu/ontology/it4it/keyDataObject, http://www.snik.eu/ontology/meta/isAssociatedWith http://www.snik.eu/ontology/meta/isAssociatedWith, http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/it4it/EnterpriseArchitectureComponent http://www.snik.eu/ontology/it4it/StrategyToPortfolio http://www.snik.eu/ontology/it4it/keyFunctionalComponent, http://www.snik.eu/ontology/meta/isAssociatedWith http://www.snik.eu/ontology/meta/entityTypeComponent
http://www.snik.eu/ontology/bb/PatientCare http://www.snik.eu/ontology/bb/OrderEntry http://www.snik.eu/ontology/meta/functionComponent http://www.w3.org/2000/01/rdf-schema#subClassOf
http://www.snik.eu/ontology/ob/InformationManagement http://www.snik.eu/ontology/ob/StrategicManagementOfInformationSystems http://www.snik.eu/ontology/meta/functionComponent http://www.w3.org/2000/01/rdf-schema#subClassOf
http://www.snik.eu/ontology/it4it/ProposalComponent http://www.snik.eu/ontology/it4it/ScopeAgreement http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses http://www.snik.eu/ontology/it4it/keyDataObject
http://www.snik.eu/ontology/it4it/Requirement http://www.snik.eu/ontology/it4it/RequirementComponent http://www.snik.eu/ontology/it4it/keyDataObject http://www.snik.eu/ontology/meta/isAssociatedWith, http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/bb/ProjectManagementBoard http://www.snik.eu/ontology/bb/ProjectManager http://www.snik.eu/ontology/meta/roleComponent http://www.snik.eu/ontology/meta/communicatesWith
http://www.snik.eu/ontology/bb/InformationManagement http://www.snik.eu/ontology/bb/StrategicInformationManagement http://www.snik.eu/ontology/meta/functionComponent http://www.w3.org/2000/01/rdf-schema#subClassOf
http://www.snik.eu/ontology/bb/PatientCare http://www.snik.eu/ontology/bb/ExecutionOfDiagnosticTherapeuticAndNursingProcedures http://www.snik.eu/ontology/meta/functionComponent http://www.w3.org/2000/01/rdf-schema#subClassOf
http://www.snik.eu/ontology/ob/InformationManagement http://www.snik.eu/ontology/ob/TacticalManagementOfInformationSystems http://www.snik.eu/ontology/meta/functionComponent http://www.w3.org/2000/01/rdf-schema#subClassOf
http://www.snik.eu/ontology/bb/ComputerBasedInformationProcessing http://www.snik.eu/ontology/bb/InformationProcessing http://www.w3.org/2000/01/rdf-schema#subClassOf http://www.snik.eu/ontology/meta/functionComponent
http://www.snik.eu/ontology/it4it/ConceptualService http://www.snik.eu/ontology/it4it/Policy http://www.snik.eu/ontology/it4it/entityRelationship http://www.snik.eu/ontology/it4it/policyToConceptualService
http://www.snik.eu/ontology/bb/PatientCare http://www.snik.eu/ontology/bb/PatientAdmission http://www.snik.eu/ontology/meta/functionComponent http://www.w3.org/2000/01/rdf-schema#subClassOf
http://www.snik.eu/ontology/bb/InformationManagement http://www.snik.eu/ontology/bb/OperationalInformationManagement http://www.snik.eu/ontology/meta/functionComponent http://www.w3.org/2000/01/rdf-schema#subClassOf
http://www.snik.eu/ontology/bb/HealthCareNetwork http://www.snik.eu/ontology/bb/HealthsuranceCompany http://www.snik.eu/ontology/meta/entityTypeComponent http://www.snik.eu/ontology/meta/communicatesWith
http://www.snik.eu/ontology/bb/PatientCare http://www.snik.eu/ontology/bb/DecisionMakingPlanningAndOrganizationOfPatientTreatment http://www.snik.eu/ontology/meta/functionComponent http://www.w3.org/2000/01/rdf-schema#subClassOf
http://www.snik.eu/ontology/bb/Directing http://www.snik.eu/ontology/bb/Management http://www.w3.org/2000/01/rdf-schema#subClassOf http://www.snik.eu/ontology/meta/functionComponent
http://www.snik.eu/ontology/bb/InformationManagement http://www.snik.eu/ontology/bb/TacticalInformationManagement http://www.snik.eu/ontology/meta/functionComponent http://www.w3.org/2000/01/rdf-schema#subClassOf
http://www.snik.eu/ontology/ob/Bid http://www.snik.eu/ontology/ob/Vendor http://www.snik.eu/ontology/meta/functionComponent http://www.snik.eu/ontology/ob/approves
http://www.snik.eu/ontology/bb/PatientCare http://www.snik.eu/ontology/bb/PatientDischargeAndTransferToOtherstitutions http://www.snik.eu/ontology/meta/functionComponent http://www.w3.org/2000/01/rdf-schema#subClassOf
KonradHoeffner commented 5 years ago

Alle Paare von Knoten, die sich in der gleichen Richtung überlappen:

select distinct ?s ?o (GROUP_CONCAT(DISTINCT ?p; SEPARATOR=", ") AS ?p) from http://www.snik.eu/ontology { ?s ?p ?o. ?s ?q ?o. filter(?s<?o). ?s a owl:Class. ?o a owl:Class. filter(?p!=?q). filter(isIRI(?o)). filter(?p!=meta:subTopClass&&(?q!=meta:subTopClass)) } group by ?s ?o

s o p
http://www.snik.eu/ontology/ob/Customizing http://www.snik.eu/ontology/ob/SoftwareProduct http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/ciox/Bereichsassistenz http://www.snik.eu/ontology/ciox/Projektbudget http://www.snik.eu/ontology/meta/isResponsibleForEntityType, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/he/AdministrativesInformationsmanagement http://www.snik.eu/ontology/he/KomponenteInformationsinfrastruktur http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/he/Innovationsfaehigkeit http://www.snik.eu/ontology/he/technologischerKorridor http://www.snik.eu/ontology/meta/decreases, http://www.snik.eu/ontology/meta/increases
http://www.snik.eu/ontology/bb/AnalysisAndAssessmentOfTheCurrentHISState http://www.snik.eu/ontology/bb/DescriptionOfTheCurrentHISState http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/he/ItStrategie http://www.snik.eu/ontology/he/Unternehmensstrategie http://www.snik.eu/ontology/meta/isAssociatedWith, http://www.snik.eu/ontology/meta/isBasedOn
http://www.snik.eu/ontology/ob/DomainLayer http://www.snik.eu/ontology/meta/EntityType http://www.snik.eu/ontology/meta/isDecomposed, http://www.w3.org/2000/01/rdf-schema#subClassOf
http://www.snik.eu/ontology/it4it/EnterpriseArchitectureComponent http://www.snik.eu/ontology/it4it/ServiceArchitecture http://www.snik.eu/ontology/it4it/keyDataObject, http://www.snik.eu/ontology/meta/isAssociatedWith, http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/ciox/ITSachkontenplanung http://www.snik.eu/ontology/ciox/SachkontoITInvestitionen http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/ob/AnalystTeam http://www.snik.eu/ontology/ob/VerificationSystemAnalysis http://www.snik.eu/ontology/meta/isevolved, http://www.snik.eu/ontology/meta/isResponsibleForFunction
http://www.snik.eu/ontology/bb/AdministrationOfBusinessTripsAndFurtherTraining http://www.snik.eu/ontology/bb/HumanResource http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/ciox/ITSachkontenplanung http://www.snik.eu/ontology/ciox/SachkontoHardwarereparaturen http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/he/AdministrativesInformationsmanagement http://www.snik.eu/ontology/he/Datensystem http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/bb/ExecutionOfDiagnosticAndTherapeuticProcedures http://www.snik.eu/ontology/bb/MedicalProcedure http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/ob/EvaluationPlanning http://www.snik.eu/ontology/ob/StudyDesign http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/he/AdministrativesInformationsmanagement http://www.snik.eu/ontology/he/Personal http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/bb/LongTermArchiving http://www.snik.eu/ontology/bb/PatientRecordArchive http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/ob/SpecificationTeam http://www.snik.eu/ontology/ob/SystemSpecification http://www.snik.eu/ontology/meta/isevolved, http://www.snik.eu/ontology/meta/isResponsibleForFunction
http://www.snik.eu/ontology/he/GewaehrleistenVorhandenseinsgeeigneterProzesse http://www.snik.eu/ontology/he/Prozess http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/it4it/ServicePortfolioComponent http://www.snik.eu/ontology/it4it/StrategyToPortfolio http://www.snik.eu/ontology/it4it/keyFunctionalComponent, http://www.snik.eu/ontology/meta/isAssociatedWith
http://www.snik.eu/ontology/ob/AnalystTeam http://www.snik.eu/ontology/ob/InformationAcquisition http://www.snik.eu/ontology/meta/isevolved, http://www.snik.eu/ontology/meta/isResponsibleForFunction
http://www.snik.eu/ontology/he/Auftraggeber http://www.snik.eu/ontology/he/Pflichtenheft http://www.snik.eu/ontology/meta/approvesEntityType, http://www.snik.eu/ontology/meta/isAssociatedWith
http://www.snik.eu/ontology/he/DurchfuehrungeinerInterdependzanalyse http://www.snik.eu/ontology/he/Erfolgsfaktor http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/he/KontinuierlicheVerbesserung http://www.snik.eu/ontology/he/Produkt http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/it4it/Policy http://www.snik.eu/ontology/it4it/Requirement http://www.snik.eu/ontology/it4it/entityRelationship, http://www.snik.eu/ontology/it4it/policyToRequirementFunctionalComponent
http://www.snik.eu/ontology/ob/ProjectDirecting http://www.snik.eu/ontology/ob/ProjectPlan http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/he/BusinessItAlignment http://www.snik.eu/ontology/he/Unternehmensstrategie http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/bb/HisBenchmarking http://www.snik.eu/ontology/bb/HisBenchmarkingMethod http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/ob/ProjectManagement http://www.snik.eu/ontology/ob/ProjectPlan http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/bb/Controlling http://www.snik.eu/ontology/bb/KeyPerformanceIndicator http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/he/AusschoepfungLeistungspotenzialsderInformationsfunktion http://www.snik.eu/ontology/he/Unternehmenserfolg http://www.snik.eu/ontology/meta/decreases, http://www.snik.eu/ontology/meta/increases
http://www.snik.eu/ontology/bb/CostAccounting http://www.snik.eu/ontology/bb/KeyPerformanceIndicator http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/bb/ManagementOfMedicalDevices http://www.snik.eu/ontology/bb/MedicalDevice http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/ob/ExecutionOfMarketAnalysis http://www.snik.eu/ontology/ob/Tender http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/he/AdministrativesInformationsmanagement http://www.snik.eu/ontology/he/Geschaeftsprozess http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/bb/MedicalAndNursingCarePlanning http://www.snik.eu/ontology/bb/NursingProcedure http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/ciox/Budgetplanung http://www.snik.eu/ontology/ciox/Etat http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/ob/ExecutionOfAProjectOrganizationForm http://www.snik.eu/ontology/ob/ProjectOrganization http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/ob/GoalDefinition http://www.snik.eu/ontology/ob/ProjectScope http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/ob/PreparationAndModelingSpecification http://www.snik.eu/ontology/ob/TargetConcept http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/ob/GoalDefinition http://www.snik.eu/ontology/ob/SystemSpecificationMethod http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/it4it/PortfolioDemandComponent http://www.snik.eu/ontology/it4it/StrategyToPortfolio http://www.snik.eu/ontology/it4it/keyFunctionalComponent, http://www.snik.eu/ontology/meta/isAssociatedWith
http://www.snik.eu/ontology/ob/AnalystTeam http://www.snik.eu/ontology/ob/PreparationAndModeling http://www.snik.eu/ontology/meta/isevolved, http://www.snik.eu/ontology/meta/isResponsibleForFunction
http://www.snik.eu/ontology/bb/InternalQualityManagement http://www.snik.eu/ontology/bb/QualityReport http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/ob/ProjectApproval http://www.snik.eu/ontology/ob/Project http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/he/Sachmittelzuordnung http://www.snik.eu/ontology/he/Stelle http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/he/BeurteilungTechnologiebedarfs http://www.snik.eu/ontology/he/Technologieeinsatzentscheidung http://www.snik.eu/ontology/meta/decreases, http://www.snik.eu/ontology/meta/increases
http://www.snik.eu/ontology/bb/AdministrationOfHumanResourceMasterData http://www.snik.eu/ontology/bb/HumanResource http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/bb/StrategicInformationManagement http://www.snik.eu/ontology/bb/StrategicInformationManagementPlan http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/he/BusinessItAlignment http://www.snik.eu/ontology/he/ItEinsatz http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/bb/Catering http://www.snik.eu/ontology/bb/Food http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/ob/SystemAnalysisPlanning http://www.snik.eu/ontology/ob/ProjectScope http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/he/KontinuierlicheVerbesserung http://www.snik.eu/ontology/he/Prozess http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/ob/TestOperation http://www.snik.eu/ontology/ob/ApplicationSystem http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/ob/ResourcePlanning http://www.snik.eu/ontology/ob/WorkPackage http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/ob/RollOut http://www.snik.eu/ontology/ob/StopOrGoDecision http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/he/Portfoliomanagement http://www.snik.eu/ontology/he/Projektordnung http://www.snik.eu/ontology/meta/functionComponent, http://www.snik.eu/ontology/meta/isAssociatedWith
http://www.snik.eu/ontology/it4it/PortfolioBacklogItem http://www.snik.eu/ontology/it4it/PortfolioDemandComponent http://www.snik.eu/ontology/it4it/keyDataObject, http://www.snik.eu/ontology/meta/isAssociatedWith
http://www.snik.eu/ontology/bb/ExecutionOfNursingProcedures http://www.snik.eu/ontology/bb/NursingProcedure http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/it4it/EnterpriseArchitectureComponent http://www.snik.eu/ontology/it4it/StrategyToPortfolio http://www.snik.eu/ontology/it4it/keyFunctionalComponent, http://www.snik.eu/ontology/meta/isAssociatedWith
http://www.snik.eu/ontology/bb/ExecutionOfAnITEvaluationStudy http://www.snik.eu/ontology/bb/KeyPerformanceIndicator http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/he/BeurteilungderTechnologieentwicklung http://www.snik.eu/ontology/he/Technologieeinsatzentscheidung http://www.snik.eu/ontology/meta/decreases, http://www.snik.eu/ontology/meta/increases
http://www.snik.eu/ontology/it4it/ProposalComponent http://www.snik.eu/ontology/it4it/ScopeAgreement http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/ob/ResourcePlanning http://www.snik.eu/ontology/ob/Resource http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/he/KostenNutzenAnalyse http://www.snik.eu/ontology/he/Wirtschaftlichkeit http://www.snik.eu/ontology/meta/isAssociatedWith, http://www.snik.eu/ontology/meta/updates
http://www.snik.eu/ontology/he/AktualisierungQualitaetspolitik http://www.snik.eu/ontology/he/Qualitaetspolitik http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/ciox/Bestellungsbearbeitung http://www.snik.eu/ontology/ciox/Etat http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/he/AktualisierungQualitaetsziel http://www.snik.eu/ontology/he/Qualitaetsziel http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/ciox/ITSachkontenplanung http://www.snik.eu/ontology/ciox/SachkontoSoftwarereparaturen http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/ob/ExecutionOfVerificationMeeting http://www.snik.eu/ontology/ob/Model http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/he/ManagementvonRessourcen http://www.snik.eu/ontology/he/Ressource http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/bb/QualityManagement http://www.snik.eu/ontology/bb/StrategicHospitalGoal http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/he/Portfoliomanagement http://www.snik.eu/ontology/he/Projektauswahl http://www.snik.eu/ontology/meta/functionComponent, http://www.snik.eu/ontology/meta/isAssociatedWith
http://www.snik.eu/ontology/bb/AdministrativeAdmission http://www.snik.eu/ontology/bb/AdministrativePatientData http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/bb/3LGM2EnterpriseFunction http://www.snik.eu/ontology/bb/3LGM2EntityType http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/ob/StrategicHISMonitoring http://www.snik.eu/ontology/ob/StrategicInformationManagementPlan http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/he/GewaehrleistenVorhandenseinseinesgeeignetenQualitaetsmanagementsSystems http://www.snik.eu/ontology/he/Qualitaetsmanagementsystem http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/bb/AdministrationAndAllocationOfPatientRecords http://www.snik.eu/ontology/bb/PatientRecordArchive http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/it4it/PolicyComponent http://www.snik.eu/ontology/it4it/StrategyToPortfolio http://www.snik.eu/ontology/it4it/keyFunctionalComponent, http://www.snik.eu/ontology/meta/isAssociatedWith
http://www.snik.eu/ontology/bb/AdministrativeAdmission http://www.snik.eu/ontology/bb/PatientTransport http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/bb/HisCertification http://www.snik.eu/ontology/bb/HisQuality http://www.snik.eu/ontology/meta/increases, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/ciox/ITSachkontenplanung http://www.snik.eu/ontology/ciox/SachkontoITDienstleistungen http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/ob/Sponsor http://www.snik.eu/ontology/ob/ProjectExecution http://www.snik.eu/ontology/meta/isevolved, http://www.snik.eu/ontology/meta/isResponsibleForFunction
http://www.snik.eu/ontology/bb/OperationalizationOfMethodsAndDetailedStudyPlan http://www.snik.eu/ontology/bb/StudyDesign http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/bb/AdministrativeAdmission http://www.snik.eu/ontology/bb/HealthCareProfessional http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/ob/DefinitionOfIntroductionStrategy http://www.snik.eu/ontology/ob/IntroductionStrategy http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/ciox/CABDurchfuehrung http://www.snik.eu/ontology/ciox/ChangeAntrag http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/he/KontinuierlicheVerbesserung http://www.snik.eu/ontology/he/Projekt http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/bb/ResearchManagement http://www.snik.eu/ontology/bb/ThirdPartyFund http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/ob/RollOut http://www.snik.eu/ontology/ob/ApplicationSystem http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/he/BestimmenDesTechnologiebedarfs http://www.snik.eu/ontology/he/Informationsinfrastruktur http://www.snik.eu/ontology/meta/decreases, http://www.snik.eu/ontology/meta/increases
http://www.snik.eu/ontology/it4it/ProposalComponent http://www.snik.eu/ontology/it4it/StrategyToPortfolio http://www.snik.eu/ontology/it4it/keyFunctionalComponent, http://www.snik.eu/ontology/meta/isAssociatedWith
http://www.snik.eu/ontology/ob/InformationManagement http://www.snik.eu/ontology/ob/InformationSystem http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
http://www.snik.eu/ontology/bb/HospitalManagement http://www.snik.eu/ontology/bb/StrategicInformationManagementPlan http://www.snik.eu/ontology/meta/updates, http://www.snik.eu/ontology/meta/uses
KonradHoeffner commented 5 years ago

Moved to the "next" milestone as we are waiting for @FranziskaJahn to create a property hierarchy of the meta model.

KonradHoeffner commented 5 years ago

The property hierarchy does not reduce this further. However it doesn't seem to be worth the effort in relation to the small number of cases now so I move this to later.