简体   繁体   中英

What does partial mean in owl

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 class adult is a specialization of the annotation, like in Class(a:Cat partial a:Animal)) .

The complete specifier means an equivalence, like in the example given in your link:

Class(a:animal_lover complete
    intersectionOf(restriction(a:has_pet minCardinality(3)) a:person))

which states that an animal_lover is a person who has at least 3 pets.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM