Re: problem with blank node identifiers and rdf:nodeID

From: Jan Grant <Jan.Grant@bristol.ac.uk>
Subject: Re: problem with blank node identifiers and rdf:nodeID
Date: Thu, 28 Nov 2002 17:32:47 +0000 (GMT)

> To be clear: Peter's correct that there's a bug in the transformation
> specification in the syntax document. A "name mangler" is _not_
> forbidden by the specification, however, since:
> 
> http://www.w3.org/TR/2002/WD-rdf-syntax-grammar-20021108/#section-Data-Model
> 
> says
> 
> [[
> This model illustrates one way to create a representation of an RDF
> Graph from an RDF/XML document. It does not mandate any implementation
> method - any other method that results in a representation of the same
> RDF Graph may be used.
> ]]

The problem is, however, that the document does not present a way of
producing a unique class of equivalent RDF graphs from an RDF/XML
document.  For example,

<rdf:RDF xmlns:rdf="..."
         xmlns:ex="...">

<rdf:Description rdf:nodeID="n1">
 <ex:foo>
  <rdf:Description />
 </ex:foo>
</rdf:Description>

</rdf:RDF>

could produce either of the two following RDF graphs

_:x1 <ex:foo> _:x1 .

or

_:x1 <ex:foo> _:x2 .

which are not equivalent.

peter

Received on Thursday, 28 November 2002 15:24:54 UTC