- From: Pierre-Antoine CHAMPIN <champin@bat710.univ-lyon1.fr>
- Date: Sat, 02 Dec 2000 13:37:46 +0100
- To: ML RDF-interest <www-rdf-interest@w3c.org>
Still investigating issues about reification...
Are, in your opinion, the following RDF piece, equivalent ??
Example 1:
<rdf:Description about="#d1" xmlns:my="http://schemas.org/">
<my:prop rdf:id="s1"> Foo </my:prop>
</rdf:Description>
<rdf:Description about="#s1"/>
<my:prop> Bar </my:prop/>
</rdf:Description>
Example 2:
<rdf:Description about="#d1" xmlns:my="http://schemas.org/">
<my:prop> Foo </my:prop>
</rdf:Description>
<rdf:Statement id="s1">
<rdf:subject resource="#d1"/>
<rdf:predicate resource="http://schemas.org/prop"/>
<rdf:object> Foo </rdf:object>
</rdf:Statement>
<rdf:Description about="#s1"/>
<my:prop> Bar </my:prop/>
</rdf:Description>
Pierre-Antoine
Received on Saturday, 2 December 2000 07:39:44 UTC