I've got one (maybe) simple question: Can I assign more than one ObjectResource to a fixed Subject-Property Statement?
I want my RDF-Triples look like that:
[http://somewhere/Angela_Merkel, http://somewhere/properties#isMentionedIn, http://somewhere/New_York_Times]
[http://somewhere/Angela_Merkel, http://somewhere/properties#isMentionedIn, http://somewhere/The_Guardian]
[http://somewhere/Angela_Merkel, http://somewhere/properties#isMentionedIn, http://somewhere/BildZeitung]
and so on.. Is this rdf well-formed?
And can I implement this in Apache Jena?
<http://somewhere/Angela_Merkel> <http://somewhere/properties#isMentionedIn> <http://somewhere/New_York_Times> .
you'd have legal N-Triples format, and you could actually test whether the RDF can be loaded. – River