OWL限制:定义依赖于概念层次结构的类

时间:2018-09-12 13:19:22

标签: owl restriction

我有一个skos:Concept的层次结构,并且想要定义一个owl:Class,其中包括那些通过特定概念与特定概念或其狭义术语之一相关联的个人属性。 我设法创建了一个owl:Restriction,它适用于一个特定的概念,但不适用于概念的层次结构:

# Concept hierarchy
concepts:Dance a skos:Concept .
concepts:FolkDance a skos:Concept ;
    skos:broaderTransitive concepts:Dance .
concepts:SquareDance a skos:Concept ;
    skos:broaderTransitive concepts:FolkDance .

# owl axioms
ex:Dance rdfs:subClassOf ex:Movement ;
    owl:equivalentClass [
        a owl:Restriction ;
        owl:onProperty ex:hasKindOfMovement ;
        owl:hasValue concepts:Dance
    ] .

# Assertions
ex:SomeInstance ex:hasKindOfMovement concepts:Dance .

以上内容正确地使ex:someInstance成为ex:Dance的实例。但是,如果我有断言,如何使ex:anotherInstance成为ex:Dance的成员

ex:anotherInstance ex:hasKindOfMovement concepts:SquareDance

?即其中owl:hasValue中的个人是比限制中指定的概念更狭窄的概念。

这个问题似乎与OWL restrictions - defining classes that only contains properties with a specific property value类似,但我无法从那里解决...非常感谢您的帮助。

0 个答案:

没有答案