# # 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: # # oneOf describes a class by enumerating its individuals. # _:a rdf:first first:large . _:a rdf:rest rdf:nil . _:a rdf:type rdf:List . _:b rdf:first first:medium . _:b rdf:rest _:a . _:b rdf:type rdf:List . _:c rdf:first first:small . _:c rdf:rest _:b . _:c rdf:type rdf:List . first:TShirt owl:oneOf _:c .