我想了解如何在 SHACL 规则中处理多个路径和存在量化。让我用一个示例本体来举例说明我的问题。
本体包括类“Approve”、“Legal”、“Result”、“Man”和“Machine”,它们都是不相交的。它有两个属性“has-theme”和“come-from”以及以下个体:
:a rdf:type :Approve ;
:has-theme :r1,:r2 .
:r1 rdf:type :Result ;
:come-from :m1 .
:r2 rdf:type :Result ;
:come-from :m2 .
:m1 rdf:type :Man .
:m2 rdf:type :Machine .
因此:批准操作“:a”有两个主题:“:r1”和“:r2”。前者来自人“:m1”,后者来自机器“:m2”。
我想写一个 SHACL 规则,说明“每个批准动作在其主题中至少有一个来自男人的结果是合法的”。
我试过这个,不将“:a”归类为合法(但它应该):
:testRule rdf:type sh:NodeShape;
sh:rule [rdf:type sh:TripleRule;
sh:condition :conditionTest;
sh:subject sh:this;
sh:predicate rdf:type;
sh:object ontology:Legal
];
sh:targetClass ontology:Approve.
:conditionTest
rdf:type sh:NodeShape;
sh:property
[
#IF the theme of the Approve action is a Result come from a Man
sh:path (ontology:has-theme ontology:come-from);
sh:class ontology:Man
].
问题是 ":a" 有两个主题,一个来自人,另一个来自机器。
然后我在网上阅读了有关 sh:oneOrMorePath 的信息,并在 sh:property 中尝试了以下变体:
sh:oneOrMorePath (ontology:has-theme ontology:come-from);
sh:path ([sh:oneOrMorePath ontology:has-theme] ontology:come-from);
sh:path (ontology:has-theme [sh:oneOrMorePath ontology:come-from]);
无事可做,这些变体也不起作用。
另一方面,如果我删除三重 ":r2 :come-from :m2" 或三重 ":a :has-theme :r2" ,它会起作用,因为本体中不再有从 ": a" 对非人。
你们中的任何人都可以帮助我吗?
谢谢!
利维奥