SPARQL 查询数据-vocabulary.org
SPARQL queries for data-vocabulary.org
我正在使用 SPARQL 查询来查询使用 Schema.org 词汇表标记的数据。我看到一些网站仍在使用 Data-Vocabulary.org 作为标记。
我能否仅将 SPARQL 查询中的 schema.org
替换为 data-vocabulary.org
以使查询正常运行?
Schema.org和Data-Vocabulary.org只是命名空间的区别吗?
这取决于您的查询。如果你想看到所有的三元组,替换命名空间就足够了。但是如果你查询某些types/properties,它可能还不够。
Data-Vocabulary.org 和 Schema.org 是相似的词汇表,它们通常对 types/properties 使用相同的名称,但并非总是如此。
示例:
Breadcrumb
vs. BreadcrumbList
Address
vs. PostalAddress
- Data-Vocabulary.org’s
image
property can only be used for products, while Schema.org’s image
property什么都能用
- …
我正在使用 SPARQL 查询来查询使用 Schema.org 词汇表标记的数据。我看到一些网站仍在使用 Data-Vocabulary.org 作为标记。
我能否仅将 SPARQL 查询中的 schema.org
替换为 data-vocabulary.org
以使查询正常运行?
Schema.org和Data-Vocabulary.org只是命名空间的区别吗?
这取决于您的查询。如果你想看到所有的三元组,替换命名空间就足够了。但是如果你查询某些types/properties,它可能还不够。
Data-Vocabulary.org 和 Schema.org 是相似的词汇表,它们通常对 types/properties 使用相同的名称,但并非总是如此。
示例:
Breadcrumb
vs.BreadcrumbList
Address
vs.PostalAddress
- Data-Vocabulary.org’s
image
property can only be used for products, while Schema.org’simage
property什么都能用 - …