http://www.loa-cnr.it/ontologies/DOLCE-Lite#constant-participant
Anytime x is present, x has participant y. In other words, all parts of x have a same participant.Participation can be constant (in all parts of the perdurant, e.g. in 'the car is running'), or temporary (in only some parts, e.g. in 'I'm electing the president').
DOMAIN | PROPERTY | RANGE |
---|---|---|
dol:perdurant | dol:constant-participant | dol:endurant |
@prefix dol: <http://www.loa-cnr.it/ontologies/DOLCE-Lite#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
dol:constant-participant a owl:ObjectProperty ;
rdfs:comment "Anytime x is present, x has participant y. In other words, all parts of x have a same participant.Participation can be constant (in all parts of the perdurant, e.g. in 'the car is running'), or temporary (in only some parts, e.g. in 'I'm electing the president')."^^xsd:string ;
rdfs:domain dol:perdurant ;
rdfs:range dol:endurant ;
rdfs:subPropertyOf dol:participant ;
owl:inverseOf dol:constant-participant-in .