crm:P86_falls_within leaf node


URI

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

Label

P86 falls within

Description

Scope note:
This property describes the inclusion relationship between two instances of E52 Time-Span.

This property supports the notion that a Time-Span’s temporal extent falls within the temporal extent of another Time-Span. It addresses temporal containment only, and no contextual link between the two instances of Time-Span is implied.

Examples:
- the time-span of the Apollo 11 moon mission (E52) falls within the time-span of the reign of Queen Elizabeth II (E52)

In First Order Logic:
P86(x,y) ⊃ E52(x)
P86(x,y) ⊃ E52(y)

Usage

DOMAINPROPERTYRANGE
crm:E52_Time-Span crm:P86_falls_within crm:E52_Time-Span

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:P86_falls_within a owl:ObjectProperty,
        owl:TransitiveProperty ;
    rdfs:label "P86 falls within"@en ;
    rdfs:comment """Scope note:
This property describes the inclusion relationship between two instances of E52 Time-Span.

This property supports the notion that a Time-Span’s temporal extent falls within the temporal extent of another Time-Span. It addresses temporal containment only, and no contextual link between the two instances of Time-Span is implied.

Examples:
- the time-span of the Apollo 11 moon mission (E52) falls within the time-span of the reign of Queen Elizabeth II (E52)

In First Order Logic:
P86(x,y) ⊃ E52(x)
P86(x,y) ⊃ E52(y)"""@en ;
    rdfs:domain crm:E52_Time-Span ;
    rdfs:range crm:E52_Time-Span ;
    owl:equivalentProperty ecrm:P86_falls_within ;
    owl:inverseOf crm:P86i_contains ;
    skos:notation "P86"^^xsd:string .