如何在ShEx中声明多个类型约束?

时间:2017-10-10 21:03:06

标签: rdf semantic-web shex

如果我有

这样的数据
@prefix my: <http://example.com/>
my:student1 a my:Student .
my:student1 a my:FoodballPlayer .
my:teacher2 a my:Teacher .
my:teacher2 a my:BaseballPlayer .
my:teacher2 a my:RugbyPlayer .

我想说这些科目是学生或老师,他们可能是零或者更多的足球,棒球或橄榄球运动员,我如何在ShEx中写下?我知道这适用于一种类型的弧:

my:person {
  a [my:Student my:Teacher]
}

1 个答案:

答案 0 :(得分:4)

您不需要为一种类型的弧约束做任何不同的事情;只需添加另一个my:*Player值集:

PREFIX my: <http://example.com/>
my:person {
  a [my:Student my:Teacher];
  a [my:FootballPlayer my:BaseballPlayer my:RugbyPlayer]+
}

demo