我正在研究一个本体,我需要告诉protege,一个类x只能具有值y和z。

我想要类似的东西:

Vegetable rdf:type owl:Class;
   owl:oneOf (carrot corn).

我必须直接编辑文件,还是可以通过Protege进行编辑?

最佳答案

在“类说明”中,应该选择“与”等效。在“类表达式”编辑器中,用大括号括起来的逗号分隔列表。在您的示例中:

Vegetable equivalentTo {carrot,corn}

07-25 21:14