crm:P15_was_influenced_by


URI

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

Label

P15 was influenced by

Description

Scope note:
This is a high level property, which captures the relationship between an E7 Activity and anything that may have had some bearing upon it.

The property has more specific sub properties.

Examples:
- the designing of the Sydney Harbour Bridge (E7) was influenced by the Tyne bridge (E22)

FOL:
P15 (x,y) ⊃ E7(x)
P15 (x,y) ⊃ E1(y)

Usage

DOMAINPROPERTYRANGE
crm:E7_Activity crm:P15_was_influenced_by crm:E1_CRM_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:P15_was_influenced_by a owl:ObjectProperty ;
    rdfs:label "P15 was influenced by"@en ;
    rdfs:comment """Scope note:
This is a high level property, which captures the relationship between an E7 Activity and anything that may have had some bearing upon it.

The property has more specific sub properties.

Examples:
- the designing of the Sydney Harbour Bridge (E7) was influenced by the Tyne bridge (E22)

FOL: 
P15 (x,y) ⊃ E7(x)
P15 (x,y) ⊃ E1(y)"""@en ;
    rdfs:domain crm:E7_Activity ;
    rdfs:range crm:E1_CRM_Entity ;
    owl:equivalentProperty ecrm:P15_was_influenced_by ;
    owl:inverseOf crm:P15i_influenced ;
    skos:notation "P15"^^xsd:string .