dol:temporary-participant


URI

http://www.loa-cnr.it/ontologies/DOLCE-Lite#temporary-participant

Label

temporary-participant

Description

Only some parts of the perdurant p have a participant e.In fact, 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').Implicitly, this relation has a temporal indexing.If needed, in OWL one can derive such indexing by expliciting what parts of p have e as _constant_ participant.An appropriate OWL axiom is created to bind this relation to a proper part of it, which has the temporary-participant as a constant one.

Usage

DOMAINPROPERTYRANGE
dol:perdurant dol:temporary-participant dol:endurant

Implementation

@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:temporary-participant a owl:ObjectProperty ;
    rdfs:comment "Only some parts of the perdurant p have a participant e.In fact, 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').Implicitly, this relation has a temporal indexing.If needed, in OWL one can derive such indexing by expliciting what parts of p have e as _constant_ participant.An appropriate OWL axiom is created to bind this relation to a proper part of it, which has the temporary-participant as a constant one."^^xsd:string ;
    rdfs:domain dol:perdurant ;
    rdfs:range dol:endurant ;
    rdfs:subPropertyOf dol:participant ;
    owl:inverseOf dol:temporary-participant-in .