crm:P116_starts leaf node


URI

http://www.cidoc-crm.org/cidoc-crm/P116_starts

Label

P116 starts

Description

Scope note:
This property allows the starting point for a E2 Temporal Entity to be situated by reference to the starting point of another temporal entity of longer duration.

This property is only necessary if the time span is unknown (otherwise the relationship can be calculated). This property is the same as the "starts / started-by" relationships of Allen’s temporal logic (Allen, 1983, pp. 832-843).

Examples:
- Early Bronze Age (E4) starts Bronze Age (E4)

In First Order Logic:
P116(x,y) ⊃ E2(x)
P116(x,y) ⊃ E2(y)

Usage

DOMAINPROPERTYRANGE
crm:E2_Temporal_Entity crm:P116_starts crm:E2_Temporal_Entity

Implementation

@prefix crm: <http://www.cidoc-crm.org/cidoc-crm/> .
@prefix ecrm: <http://erlangen-crm.org/current/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

crm:P116_starts a owl:ObjectProperty,
        owl:TransitiveProperty ;
    rdfs:label "P116 starts"@en ;
    rdfs:comment """Scope note:
This property allows the starting point for a E2 Temporal Entity to be situated by reference to the starting point of another temporal entity of longer duration.

This property is only necessary if the time span is unknown (otherwise the relationship can be calculated). This property is the same as the "starts / started-by" relationships of Allen’s temporal logic (Allen, 1983, pp. 832-843).

Examples:
- Early Bronze Age (E4) starts Bronze Age (E4)

In First Order Logic:
P116(x,y) ⊃ E2(x)
P116(x,y) ⊃ E2(y)"""@en ;
    rdfs:domain crm:E2_Temporal_Entity ;
    rdfs:range crm:E2_Temporal_Entity ;
    owl:equivalentProperty ecrm:P116_starts ;
    owl:inverseOf crm:P116i_is_started_by ;
    skos:notation "P116"^^xsd:string .