RE: RDF in Open Directory project

>   But as I look at the data it seems that it doesn`t look like
>   canonical RDF, there aren`t <rdf:Description> tags, instead the
>   whole file consists of <Topic> and <ExternalPage> tags.
>
>   Here`s sample:
>
> <Topic r:id="Top/News">
>   <tag catid="8"/>
>   <d:Title>News</d:Title>
>   <link r:resource="http://www.bcity.com/bollettino"/>
>   <link r:resource="http://news.bbc.co.uk"/>
> </Topic>

Oops, I got it wrong.

According to a third party, the RDF schema defines something called "typed
nodes", which operate as if they were descriptions with the rdf:type element
set.

So,

<Topic rdf:ID="foo">
  <dc:title>Foo</dc:title>
</Topic>

is semantically equivalent to:

<rdf:Description rdf:ID="foo">
  <rdf:type resource="Topic"/>
  <dc:title>Foo</dc:title>
</rdf:Description>

My apologies for the confusion.

Will.

Received on Saturday, 11 November 2000 15:46:28 UTC