crm:P76_has_contact_point leaf node


URI

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

Label

P76 has contact point

Description

Scope note:
This property identifies an E51 Contact Point of any type that provides access to an E39 Actor by any communication method, such as e-mail or fax.

Examples:
- RLG (E40) has contact point "bl.ric@rlg.org" (E51)

In First Order Logic:
P76(x,y) ⊃ E39(x)
P76(x,y) ⊃ E51(y)

Usage

DOMAINPROPERTYRANGE
crm:E39_Actor crm:P76_has_contact_point crm:E51_Contact_Point

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:P76_has_contact_point a owl:ObjectProperty ;
    rdfs:label "P76 has contact point"@en ;
    rdfs:comment """Scope note:
This property identifies an E51 Contact Point of any type that provides access to an E39 Actor by any communication method, such as e-mail or fax.

Examples:
- RLG (E40) has contact point "bl.ric@rlg.org" (E51)

In First Order Logic:
P76(x,y) ⊃ E39(x)
P76(x,y) ⊃ E51(y)"""@en ;
    rdfs:domain crm:E39_Actor ;
    rdfs:range crm:E51_Contact_Point ;
    owl:equivalentProperty ecrm:P76_has_contact_point ;
    owl:inverseOf crm:P76i_provides_access_to ;
    skos:notation "P76"^^xsd:string .