# # 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: Jos De Roo # # Description: # # The order of the classes in an intersectionOf # construct is unimportant. # _:a rdf:first first:Employee . _:a rdf:rest rdf:nil . _:a rdf:type rdf:List . _:b rdf:first first:Student . _:b rdf:rest _:a . _:b rdf:type rdf:List . first:B owl:intersectionOf _:b . _:c rdf:first first:Student . _:c rdf:rest rdf:nil . _:c rdf:type rdf:List . _:d rdf:first first:Employee . _:d rdf:rest _:c . _:d rdf:type rdf:List . first:C owl:intersectionOf _:d . first:John rdf:type first:B .