gpt4 book ai didi

rdf - 为什么 ShEx 常量不匹配数据中的相同术语?

转载 作者:行者123 更新时间:2023-12-04 22:55:53 28 4
gpt4 key购买 nike

我有一个需要特定类型的 ShEx 架构:

epri:VariableShape {
a st:studyVariable ;
st:subject [tax:~] ;
st:signal xsd:decimal
}

拒绝该类型的数据
st:envFactorEMF a st:studyVariable ; # << this isn't recognized
st:subject tax:1758 ;
st:signal -.00043 .

( demo ) 为什么会这样?

最佳答案

您链接到的演示中的错误消息实际上描述了确切的问题。

Error validating http://www.epri.com/studies/3002011786studyVariable as {"type":"NodeConstraint","datatype":"http://www.epri.com/studies/3002011786studyVariable"}: mismatched datatype: http://www.epri.com/studies/3002011786studyVariable is not a literal with datatype http://www.epri.com/studies/3002011786studyVariable



您正在使用 datatype constraint ,这不是您想要的。

您需要使用 a [ st:studyVariable ] ,相反,因为您要指定 value set :
epri:VariableShape {
a [ st:studyVariable ];
st:subject [tax:~] ;
st:signal xsd:decimal
}

关于rdf - 为什么 ShEx 常量不匹配数据中的相同术语?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46878729/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com