# # 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: Jonathan Borden # # Description: # # OWL, unlike RDFS, uses iff semantics for range. # first:prop rdf:type rdf:Property . _:a rdf:type owl:Class . _:b rdf:first first:B . _:b rdf:rest rdf:nil . _:b rdf:type rdf:List . _:c rdf:first first:A . _:c rdf:rest _:b . _:c rdf:type rdf:List . _:a owl:intersectionOf _:c . first:prop rdfs:range _:a .