crm:P31_has_modified


URI

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

Label

P31 has modified

Description

Scope note:
This property identifies the E24 Physical Man-Made Thing modified in an E11 Modification.

If a modification is applied to a non-man-made object, it is regarded as an E22 Man-Made Object from that time onwards.

Examples:
- rebuilding of the Reichstag (E11) has modified the Reichstag in Berlin (E24)

In First Order Logic:
P31(x,y) ⊃ E11(x)
P31(x,y) ⊃ E24(y)
P31(x,y) ⊃ P12(x,y)

Usage

DOMAINPROPERTYRANGE
crm:E11_Modification crm:P31_has_modified crm:E24_Physical_Man-Made_Thing

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:P31_has_modified a owl:ObjectProperty ;
    rdfs:label "P31 has modified"@en ;
    rdfs:comment """Scope note:
This property identifies the E24 Physical Man-Made Thing modified in an E11 Modification.

If a modification is applied to a non-man-made object, it is regarded as an E22 Man-Made Object from that time onwards.

Examples:
- rebuilding of the Reichstag (E11) has modified the Reichstag in Berlin (E24)

In First Order Logic:
P31(x,y) ⊃ E11(x)
P31(x,y) ⊃ E24(y)
P31(x,y) ⊃ P12(x,y)"""@en ;
    rdfs:domain crm:E11_Modification ;
    rdfs:range crm:E24_Physical_Man-Made_Thing ;
    rdfs:subPropertyOf crm:P12_occurred_in_the_presence_of ;
    owl:equivalentProperty ecrm:P31_has_modified ;
    owl:inverseOf crm:P31i_was_modified_by ;
    skos:notation "P31"^^xsd:string .