# # Copyright World Wide Web Consortium, (Massachusetts Institute of # Technology, European Research Consortium for Informatics and # Mathematics, Keio University). # # All Rights Reserved. # # Please see the full Copyright clause at # # # Author: Jeremy J. Carroll # # Description: # # Two classes with the same partial description are not the same. # first:c1 rdf:type owl:Class . _:a rdf:type owl:Restriction . _:a owl:onProperty first:p . _:a owl:cardinality "1"^^xsd:nonNegativeInteger . _:b rdf:first _:a . _:b rdf:rest rdf:nil . _:b rdf:type rdf:List . _:c owl:intersectionOf _:b . first:c1 rdfs:subClassOf _:c . first:c2 rdf:type owl:Class . _:d rdf:type owl:Restriction . _:d owl:onProperty first:p . _:d owl:cardinality "1"^^xsd:nonNegativeInteger . _:e rdf:first _:d . _:e rdf:rest rdf:nil . _:e rdf:type rdf:List . _:f owl:intersectionOf _:e . first:c2 rdfs:subClassOf _:f . first:p rdf:type owl:ObjectProperty .