foaf:img leaf node


URI

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

Label

img

Description

An image that can be used to represent a User (e.g., one's photo on a homepage).

Usage

DOMAINPROPERTYRANGE
klms:User foaf:img foaf:Image

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:img a owl:ObjectProperty ;
    dcterms:identifier "foaf:img" ;
    vann:usageNote "Optional property. An image that can be used to represent a User (e.g., one's photo on a homepage)."@en ;
    rdfs:comment "An image that can be used to represent a User (e.g., one's photo on a homepage)."@en ;
    rdfs:domain :User ;
    rdfs:isDefinedBy foaf: ;
    rdfs:range foaf:Image .