使用 rdflib 验证 .ttl 元素

Validating .ttl elements with rdflib

有没有办法使用 rdflib 或类似的包来验证一组元素?

例如

from rdflib import Graph, Namespace, Literal
from rdflib.namespace import DCTERMS

n = Namespace("http://example.org/books/")
n.book

g = Graph()
g.bind("dc", DCTERMS)
g.bind("ex", n)
g.add((n["book"], DCTERMS["title"], Literal("Example Title"))) # Valid
g.add((n["book"], DCTERMS["tite"], Literal("Example Title"))) # Invalid

或者它看起来像一个 .ttl 文件:

@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix ex: <http://example.org/books/>

ex:book dc:title "Example Title" . # Valid
ex:book dc:tite "Example Title" . # Invalid

我很有可能完全从错误的角度来处理这个问题,因此我们不胜感激。

@UninformedUser 评论:

check if the property is part of the DCTerms vocabulary - which is trivial to check

  1. 下载词汇表 - 在代码中或单独下载
  2. 将词汇表加载到另一个 RDFlib Graph
  3. 检查您正在使用的 属性 是否是另一个图表中的 rdf:Property,根据:
if not (the_property_being_tested, RDF.type, RDF.Property) in graph:

或者,只看它是否是图表中的主题(较宽松的测试):

in_graph = False
for s, p, o in g.triples((the_property_being_tested, None, None)):
    in_graph = True