I have been reading this document and i encountered the following:
Class(a:adult partial
annotation(rdfs:comment "Things that are adult.")
I understand annotation but what is partial/complete and is it used these days?
I have been reading this document and i encountered the following:
Class(a:adult partial
annotation(rdfs:comment "Things that are adult.")
I understand annotation but what is partial/complete and is it used these days?
partial
here means the classadult
is a specialization of the annotation, like inClass(a:Cat partial a:Animal))
.The
complete
specifier means an equivalence, like in the example given in your link:which states that an
animal_lover
is aperson
who has at least 3 pets.