RDF containers vs. multiple properties of same predicate

Hi,

does anyone know of a definition (or discussion) of the semantic 
difference between the RDF graphs resulting from for example:

<rdf:Description rdf:about="http://example.org/books/some_book">
    <dc:creator rdf:resource="http://foo.org/persons/joe_smith"/>
    <dc:creator rdf:resource="http://foo.org/persons/mary_meyer"/>
</rdf:Description>

and

<rdf:Description rdf:about="http://example.org/books/some_book">
  <dc:creator>
         <rdf:Bag>
            <rdf:li rdf:resource="http://foo.org/persons/joe_smith"/>
            <rdf:li rdf:resource="http://foo.org/persons/mary_meyer"/>
         </rdf:Bag>
   </dc:creator>
</rdf:Description>

IOW, what is the difference of having several authors vs. having an rdf:bag of authors?


Thanks for any clarification.

Jan


-- 
Jan Algermissen
Consultant & Programmer
http://jalgermissen.com

Received on Monday, 4 April 2005 07:56:40 UTC