Re: blank nodes question

Peter P. Jones wrote:
> Hi, 
> 
> I have a question about blank nodes in RDF that's probably not as 
> naive as it sounds.
> 
> Q: Why are blank nodes necessary?

I think mostly only so that you don't have to give a URI for every node 
in an RDF/XML document, yet can have a deterministic mapping from an 
RDF/XML document to an RDF graph.

E.g., with

     <rdf:Description rdf:about="#Shoe">
         <rdfs:subClassOf>
             <owl:Restriction>
                 ...
             </owl:Restriction>
         </rdfs:subClassOf>
     </rdf:Description>

you don't need to come up (and clutter the source) with a URI for the 
owl:Restriction.

- Benja

Received on Saturday, 26 July 2003 16:19:45 UTC