3

如何在 OWL 中声明属性必须具有一组有序值?

例如:一个 Program 必须有一个 rdf:Seq of Series,而一个 Series 必须有一个 rdf:Seq of Episodes?

http://purl.org/ontology/po/本体使用属性http://purl.org/ontology/po/position代替

哪种方法更好?

4

2 回答 2

0

在 OWL(和 RDF)中很难表示序列,它更多的是关于无序的事物集。我发现最好的方法是通过属性分配一个数字,然后跟踪该索引并在需要时使用它进行迭代。

代表您想要捕获的内容的 OWL 本体可能是这样的(使用曼彻斯特语法 - 您可以保存为 .owl 文件并使用Protege打开-#是注释):

Prefix: xsd: <http://www.w3.org/2001/XMLSchema#>
Prefix: owl: <http://www.w3.org/2002/07/owl#>
Prefix: : <brain#>
Prefix: xml: <http://www.w3.org/XML/1998/namespace>
Prefix: rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
Prefix: dc: <http://purl.org/dc/elements/1.1/>
Prefix: rdfs: <http://www.w3.org/2000/01/rdf-schema#>
Ontology: <brain.owl>

Datatype: xsd:int

ObjectProperty: has
  Characteristics: 
    Transitive

# Property used to save the number in the sequence
DataProperty: episode-number
  Range: 
    xsd:int

# Definition of a program: A program as at least a series
Class: Program
  SubClassOf: 
    has some Series

Class: owl:Thing

# Definition of series: A series as at least one episode
Class: Series
  SubClassOf: 
    has some Episode

Class: Episode

# Instance of episode
Individual: episode1
  Types: 
    Episode

  # Episode number
  Facts:  
   episode-number  "1"^^xsd:int

# Second instance of episode
Individual: episode2
  Types: 
    Episode

Facts:  
 episode-number  "2"^^xsd:int

假设您想要迭代剧集实例。这可以通过 OWL 查询来实现Episode and episode-number value 1。您必须自己更新号码。

于 2013-03-30T17:35:33.017 回答
0

如何在 OWL 中声明属性必须具有一组有序值?例如:一个 Program 必须有一个 rdf:Seq of Series,而一个 Series 必须有一个 rdf:Seq of Episodes?

如果您正在使用 OWL (DL),那么您不应该真正使用 RDF 集合。 如果您可以具体化关系并包含位置编号, loopasam 的答案很好,但您也可以在类似于 RDF 列表的 OWL 中声明自己的列表结构(这只是单链表的 RDF 编码)。因此你可以有

:series hasEpisodeList [ ex:first :episodeA ;
                         ex:rest [ ex:first :episodeB ;
                                   ex:rest [ :episodeC ;
                                             ex:rest ex:nil ] ] ] .

但是,这种方法的缺点是数字信息只是隐含的,并且很难使用 DL 查询来重构(尽管使用 SPARQL 并不太难)。这两种表示序列的方法在本体中的实体排序和它所链接的其他问题和答案中都有更详细的描述。

于 2014-06-25T15:51:24.137 回答