假设这样的规则:
if someone.height>180 then
someone is tallPerson
else if someone.height>155 then
someone is mediumPerson
else
someone is shortPerson
如何在 shacl 形状文件中表示这些规则?如果我有这样的数据图:
:bob a :Person ;
:hasHeight 185 .
我怎样才能得到 :
:bob a :tallPerson .
谢谢你的帮助 !