The questions is about the uri of a named graph in an endpoint. Taking the following extracted example.
Is it correct to use the same uri for both the concept of the named graph and the name of the named graph?
@prefix : <http://www.w3.org/ns/sparql-service-description#>
@prefix void: <http://rdfs.org/ns/void#> .
<http://purl.uniprot.org/tissues/> :graph <#_3> .
:name <http://purl.uniprot.org/tissues/> .
<#_3> void:classes "1" ;
a :Graph .
Or should I use the following construct instead
<#_2> :graph <#_3> .
:name <http://purl.uniprot.org/tissues/> .
<#_3> void:classes "1" ;
a :Graph .
This question was asked on the public-lod and public-rdf mailing list but did not get a reply.
asked
23 Jan, 05:54
Jerven
2.9k●5●10
accept rate:
29%