如果我有这样的数据
@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]
}
除了对一个类型 arc 约束执行任何不同操作;只需添加另一个具有my:*Player
值集
PREFIX my: <http://example.com/>
my:person {
a [my:Student my:Teacher];
a [my:FootballPlayer my:BaseballPlayer my:RugbyPlayer]+
}
演示