Re: Placing a comment on a relationship?!

On Thursday 20 May 2004 14:45, Richard Lennox wrote:
> ----- Original Message -----
> From: "Thomas B. Passin" <tpassin@comcast.net>

> > Either way, you would only use a given one of these predicates once in a
> > given graph.
>
> Not necessarily a single thing can have relations to many things and using
> many different types of relation hence a graph could have
>
> C1 dc:relation_1 C2
> C1 dc:relation_2 C3
> C1 dc:relation_3 C4

That still uses each predicate only once.

Another approach is to model these general relationships in a different way 
from the more specific ones. Model the relationship explicitly (as a node):

C1 ex:relation _:rel1 .
C2 ex:relation _:rel1 .
_:rel1 ex:comment "blah blah" .

where, say

ex:relation rdfs:range ex:Relationship .

then you can say anything you want about each specific relationship.

More concrete examples might help.

Hamish

Received on Thursday, 20 May 2004 11:30:34 UTC