Re: Individuals with more than one rdf:type

As a general rule of thumb, mentally replace, in everything you read,

• "rdf:type" with "is a member of the set",
• "rdfs:subClassOf" with "is a subset of",
• and the name of every class with "named XXX".

That will convey the correct semantics.

> <rdf:Description rdf:about="#MacBookPro">
>         <rdf:type rdf:resource="#Laptop" />
>         <rdf:type rdf:resource="#MacintoshComputer" />
>         <rdf:type rdf:resource="#i386Computer" />
> </rdf:Description>

... the instance named "MacBookPro" is a member of the set named  
Laptop, the set named MacintoshComputer, and the set named i386Computer.

RDF types are not object oriented classes. RDF instances are not  
objects. They do not inherit anything in the OO sense.

-R


On  19 Sep 2006, at 2:31 PM, Paul Gearon wrote:

>
> which adds ns:CameraEnabledDevice to the list of types for MacBookPro.

Received on Wednesday, 20 September 2006 00:46:37 UTC