Re: RDF/XML syntax for property chain example error?

Sorry for the late reply.  You are correct.  I've changed the document.

peter



In the property chain example in section
http://www.w3.org/2007/OWL/wiki/Primer#More_Expressive_Modeling
the Manchester syntax is:

SubProperty: hasSpouse o hasSon hasSon
SubProperty: hasSpouse o hasDaughter hasDaughter

But I think the RDF/XML syntax shown below is incomplete.  It only shows the List of the two 
properties, but does not include the owl:propertyChain as required by
http://www.w3.org/2007/OWL/wiki/Mapping_to_RDF_Graphs#Translation_of_Axioms_without_Annotations

<rdf:Description>
   <rdf:type rdf:resource="&rdf;List"/>
   <rdf:first rdf:resource="#hasSpouse"/>
   <rdf:rest rdf:parseType="Collection">
     <rdf:Description rdf:about="#hasSon"/>
   </rdf:rest>
   <rdfs:subPropertyOf rdf:resource="#hasSon"/>
</rdf:Description>

<rdf:Description>
   <rdf:type rdf:resource="&rdf;List"/>
   <rdf:first rdf:resource="#hasSpouse"/>
   <rdf:rest rdf:parseType="Collection">
     <rdf:Description rdf:about="#hasDaughter"/>
   </rdf:rest>
   <rdfs:subPropertyOf rdf:resource="#hasDaughter"/>
</rdf:Description>

Received on Wednesday, 12 November 2008 00:53:17 UTC