[
Lists Home |
Date Index |
Thread Index
]
Thomas B. Passin wrote:
>
> I think you could get what you are after by using allValuesFrom, couldn't
> you? From the OWL Language reference -
>
> <owl:Restriction>
> <owl:onProperty rdf:resource="#hasParent" />
> <owl:allValuesFrom rdf:resource="#Human" />
> </owl:Restriction>
>
The difference in functionality between an owl:Restriction and an rdfs:range
is that an rdfs:range applies globably to a property, whereas a restriction
is local to the class being defined.
So, in this case, the "hasParent" property is restricted to Humans _for
Humans_ and presumably to Monkeys for Monkeys, etc.
Jonathan
|