You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the widoco.jar with -confFile' parameter and a config.properties file leads to an unvalid provenance-en.ttl turtle file. If I enter an author / contributor to the config.properties file: authors=John Doe contributors=Jane Doe
widoco generates a provenance-en.ttl with following lines:
dc:title "someTitle";
prov:wasAttributedTo :agent0;
prov:wasAttributedTo :agent1;
:agent0 a prov:Agent; foaf:name "John Doe".
:agent1 a prov:Agent; foaf:name "Jane Doe".
In my understanding, there should be an underscore _ before :agent0/agent1 to be valid blank nodes, like this:
prov:wasAttributedTo _:agent0;
...
_:agent0 a prov:Agent; foaf:name "John Doe".
The text was updated successfully, but these errors were encountered:
HaydarAk
changed the title
Generating provenance-en.ttl using config.properties file leads to unvalid provenance-en turtle
Generating provenance-en.ttl using config.properties file leads to unvalid turtle file
Jan 13, 2020
Using the widoco.jar with -confFile' parameter and a config.properties file leads to an unvalid provenance-en.ttl turtle file. If I enter an author / contributor to the config.properties file:
authors=John Doe
contributors=Jane Doe
widoco generates a provenance-en.ttl with following lines:
In my understanding, there should be an underscore _ before :agent0/agent1 to be valid blank nodes, like this:
Otherwise, it is not a valid turtle.
Tested with Online RDF/Turtle validators as well as the raptor-2 validator
The text was updated successfully, but these errors were encountered: