- From: Jeff Thompson <jeff@thefirst.org>
- Date: Mon, 25 Aug 2008 22:17:19 -0700
- To: public-owl-comments@w3.org
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 Tuesday, 26 August 2008 05:17:56 UTC