foaf:mbox leaf node


URI

http://xmlns.com/foaf/0.1/mbox

Label

mbox

Description

A personal mailbox, ie. an Internet mailbox associated with exactly one user, the first owner of this mailbox. This is a 'static inverse functional property', in that there is (across time and change) at most one individual that ever has any particular value for foaf:mbox.

Usage

DOMAINPROPERTYRANGE
klms:User foaf:mbox rdfs:Resource

Implementation

@prefix : <http://stelar-project.eu/klms#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vann: <http://purl.org/vocab/vann/> .

foaf:mbox a owl:ObjectProperty ;
    dcterms:identifier "foaf:mbox" ;
    vann:usageNote "Recommended property. A personal mailbox, ie. an Internet mailbox associated with exactly one user."@en ;
    rdfs:comment "A personal mailbox, ie. an Internet mailbox associated with exactly one user, the first owner of this mailbox. This is a 'static inverse functional property', in that there is (across time and change) at most one individual that ever has any particular value for foaf:mbox."@en ;
    rdfs:domain :User ;
    rdfs:isDefinedBy foaf: ;
    rdfs:range rdfs:Resource .