OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

office-metadata message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: Re: [office-metadata] Multiple content nodes representing on RDF subject



On Dec 22, 2006, at 4:08 PM, Bruce D'Arcus wrote:

> The literal "important" is a property of the resource identified by 
> the URI <http://ex.net/Important>, which is in turn a property of the 
> description of the content node. There is built-in indirection of 
> sorts in the RDF model.
>
> So:
>
> content <--- ex:status ---> "important"

Actually, better yet, run this through the RDF validator and have it 
output the graph:

<?xml version="1.0"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
   xmlns:ex="http://ex.org/test#";>
   <rdf:Description rdf:about="content.xml#_foo1">
     <ex:status rdf:resource="http://ex.net/Important"/>
   </rdf:Description>
   <rdf:Description rdf:about="http://ex.net/Important";>
     <rdf:value xml:lang="en">important</rdf:value>
   </rdf:Description>
</rdf:RDF>

<http://www.w3.org/RDF/Validator/>

That might give you a better understanding of the model.

Bruce



[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]