我们有一个要求,我们将以JSON-LD格式存储数据,以便从目录中维护目录和数据,将批量提取到支持RDF数据格式的图形DB。我们一直在寻找Cayley和DBgraph,但这些数据库支持N-Quads作为其数据格式。
如果存在具有JSON-LD数据格式的图形数据库,或者是否有将JSON-LD格式转换为N-Quads / Turtle格式的方法?
答案 0 :(得分:1)
将JSON-LD转换为N-Quads(和返回)是JSON-LD API规范中描述的核心算法。任何符合JSON-LD处理器的都支持此
答案 1 :(得分:0)
Pyld 提供了将jsonld规范化为其他 RDF 格式的选项。
# normalize a document using the RDF Dataset Normalization Algorithm
# (URDNA2015), see: http://json-ld.github.io/normalization/spec/
normalized = jsonld.normalize(
doc, {'algorithm': 'URDNA2015', 'format': 'application/nquads'})
# normalized is a string that is a canonical representation of the document
# that can be used for hashing, comparison, etc.
以下是链接: