We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 678c502 commit f0f275bCopy full SHA for f0f275b
reproschema/jsonldutils.py
@@ -107,5 +107,10 @@ def to_newformat(path, format):
107
import rdflib as rl
108
109
g = rl.Graph()
110
+ g.bind("rs", "http://schema.repronim.org/")
111
+ g.bind("sdo", "http://schema.org/")
112
+ g.bind("nidm", "http://purl.org/nidash/nidm#")
113
+ g.bind("skos", "http://www.w3.org/2004/02/skos/core#")
114
+ g.bind("prov", "http://www.w3.org/ns/prov#")
115
g.parse(data=nt, format="nt")
116
return g.serialize(format=format).decode()
0 commit comments