Here's the fix:
<owl:ObjectProperty rdf:ID="producedBinding">
<rdfs:domain rdf:resource="#Produce"/>
<rdfs:range>
<owl:unionOf rdf:parseType="Collection">
<owl:Class rdf:about="#OutputBinding"/>
<owl:Class rdf:about="#LinkBinding"/>
</owl:unionOf>
</rdfs:range>
</owl:ObjectProperty>
Should be:
<owl:ObjectProperty rdf:ID="producedBinding">
<rdfs:domain rdf:resource="#Produce"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<owl:Class rdf:about="#OutputBinding"/>
<owl:Class rdf:about="#LinkBinding"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
</owl:ObjectProperty>
(Basically, you broke striping with the owl:unionOf)
Cheers,
Bijan.
-- [To unsubscribe to this list send an email to "majdart@bbn.com" with the following text in the BODY of the message "unsubscribe daml-process"]Received on Sun Mar 5 14:01:43 2006
This archive was generated by hypermail 2.1.8 : Sun Mar 05 2006 - 14:01:44 EST