RDF 属性可以包含其他属性吗?
RDF:Property 是否可以包含其他属性以及 rdf:range 和 rdf:domain。例如,您可以有以下内容吗:
<rdf:Property rdf:about="&base;adminStaff">
<rdfs:domain rdf:resource="&base;Staff"/>
<rdfs:range rdf:resource="&rdfs;Literal"/>
<dcterms:description>This is a member of staff</dcterms:description>
</rdf:Property>
我在这里感兴趣的是都柏林核心描述元素的使用。这是否有效。当将其视为三元组时看起来不错并且有意义,但我不确定将此属性包含在另一个属性中是否有效。
Can the RDF:Property contain other properties along with rdf:range and rdf:domain. For example, could you have the following:
<rdf:Property rdf:about="&base;adminStaff">
<rdfs:domain rdf:resource="&base;Staff"/>
<rdfs:range rdf:resource="&rdfs;Literal"/>
<dcterms:description>This is a member of staff</dcterms:description>
</rdf:Property>
The bit im interested in here is the use of the dublin core description element. Is this valid. It looks ok when viewing it as triples and makes sense but im unsure whether it is valid to have this property inside another property.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,它是有效的。您也可以在都柏林核心元数据元素集中进行检查。
Yes, it is valid. You can check it also in the Dublin Core Metadata Element Set.