In owl spec I see examples like:
:MyBirthdayGuests owl:equivalentClass [
rdf:type owl:Class ;
owl:oneOf ( :Bill :John :Mary )
] .
I use now (seems perfectly fine in tbc):
ex1:LoadLevelType
a owl:Class ;
rdfs:subClassOf owl:Thing ;
owl:oneOf (
ex1:Light
ex1:Normal
ex1:Heavy
) ;
.
Based on example, should I use:
ex1:LoadLevelType
a owl:Class ;
rdfs:subClassOf owl:Thing ;
owl:equivalentClass [
rdf:type owl:Class
owl:oneOf (
ex1:Light
ex1:Normal
ex1:Heavy
) ] ;
.
Or even:
ex1:LoadLevelType
a owl:Class ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf [
rdf:type owl:Class
owl:oneOf (
ex1:Light
ex1:Normal
ex1:Heavy
) ] ;
.
Thx Michel
Dr. ir. H.M. (Michel) Böhms
Senior Data Scientist
T +31888663107
M +31630381220
E [email protected]<mailto:[email protected]>
Location<https://www.google.com/maps/place/TNO+-+Locatie+Delft+-+Stieltjesweg/@52.000788,4.3745183,17z/data=!3m1!4b1!4m5!3m4!1s0x47c5b58c52869997:0x56681566be3b8c88!8m2!3d52.000788!4d4.376707>
[cid:[email protected]]<http://www.tno.nl/>
This message may contain information that is not intended for you. If you are
not the addressee or if this message was sent to you by mistake, you are
requested to inform the sender and delete the message. TNO accepts no liability
for the content of this e-mail, for the manner in which you use it and for
damage of any kind resulting from the risks inherent to the electronic
transmission of messages.
--
You received this message because you are subscribed to the Google Groups
"TopBraid Suite Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/topbraid-users/d0e4014c7bfe42af9f466fc7e3fc0b1e%40tno.nl.