@prefix : <http://www.w3.org/2001/09/01-borges/taxon#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.

# "These ambiguities, redundancies, and deficiencies recall those
# attributed by Dr. Franz Kuhn to a certain Chinese encyclopedia
# entitled Celestial Emporium of Benevolent Knowledge. On those remote
# pages it is written that animals are divided into (a) those that
# belong to the Emperor, (b) embalmed ones, (c) those that are
# trained, (d) suckling pigs, (e) mermaids, (f) fabulous ones, (g)
# stray dogs, (h) those that are included in this classification, (i)
# those that tremble as if they were mad, (j) innumerable ones, (k)
# those drawn with a very fine camel's hair brush, (l) others, (m)
# those that have just broken a flower vase, (n) those that resemble
# flies from a distance."
#                  -- Essay: "The Analytical Language of John Wilkins"

:Animal a rdfs:Class;
	rdfs:label "Animal".

:a a rdfs:Class;
	rdfs:subClassOf :Animal;
	rdfs:label "those that belong to the Emperor".

:b a rdfs:Class;
	rdfs:subClassOf :Animal;
	rdfs:label "embalmed ones".

:c a rdfs:Class;
	rdfs:subClassOf :Animal;
	rdfs:label "those that are trained".

:d a rdfs:Class;
	rdfs:subClassOf :Animal;
	rdfs:label "suckling pigs".

:e a rdfs:Class;
	rdfs:subClassOf :Animal;
	rdfs:label "mermaids".

:f a rdfs:Class;
	rdfs:subClassOf :Animal;
	rdfs:label "fabulous ones".

:g a rdfs:Class;
	rdfs:subClassOf :Animal;
	rdfs:label "stray dogs".

:h a rdfs:Class;
	rdfs:subClassOf :Animal;
	rdfs:label "those that are included in this classification".

:i a rdfs:Class;
	rdfs:subClassOf :Animal;
	rdfs:label "those that tremble as if they were mad".

:j a rdfs:Class;
	rdfs:subClassOf :Animal;
	rdfs:label "innumerable ones".

:k a rdfs:Class;
	rdfs:subClassOf :Animal;
	rdfs:label "those drawn with a very fine camel's hair brush".

:l a rdfs:Class;
	rdfs:subClassOf :Animal;
	rdfs:label "others".

:m a rdfs:Class;
	rdfs:subClassOf :Animal;
	rdfs:label "those that have just broken a flower vase".

:n a rdfs:Class;
	rdfs:subClassOf :Animal;
	rdfs:label "those that resemble flies from a distance.".




