Re: Expressing rdfs:seeAlso in RDF/XML

On 8/3/05, Uldis Bojars <uldis.bojars@gmx.net> wrote:
> 
> 
> Is there is a shorter way to express rdfs:seeAlso in RDF/XML than:
> 
> <Object1>
>    <rdfs:seeAlso rdf:resource="URI"/>
> </Object1>
> 
> You may omit blank nodes if properties have literal values:
>   <ex:editor ex:fullName="Dave Beckett" />
> 
> Can you do a similar thing with properties whose values are resources,
> as is the case with rdfs:seeAlso?

Heh, fun. Best I could find was:

<rdf:Description rdf:about="http://www.w3.org/">
    <rdfs:seeAlso rdf:resource="http://example.org/uri2"/>
</rdf:Description>

gets more value-for-character with labels:

<rdf:Description rdf:about="http://www.w3.org/"  rdfs:label="LabelS">
    <rdfs:seeAlso rdf:resource="http://example.org/uri2" rdfs:label="LabelO"/>
</rdf:Description>

it's a bit late here to check danbri's notes [1] to find why 

<rdfs:seeAlso rdf:about="http://example.org/uri1"
rdf:resource="http://example.org/uri2"/>

didn't make it in...

Cheers,
Danny.

 [1] http://www.w3.org/2001/sw/Europe/200407/swintro/syntaxdesign.html


-- 

http://dannyayers.com

Received on Wednesday, 3 August 2005 22:55:54 UTC