Is it right, that in OWL-DL, if some :x has an rdf:type of something which is an owl:Class, e.g. :Car
:Car rdf:type owl:Class .
:x rdf:type :Car .
or equivalent
:Car a owl:Class .
:x a :Car .
it cannot be deduced, that :x must be an owl:(Named)Individual, thus one have to specify that additional fact always manually?
:x a :Car ;
a owl:NamedIndividual ;
:hasType :Ford ;
:hasColor "red" .