foaf:logo leaf node


URI

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

Label

logo

Description

A logo representing some thing (e.g., organization).

Usage

DOMAINPROPERTYRANGE
klms:Organization foaf:logo 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:logo a owl:ObjectProperty ;
    dcterms:identifier "foaf:logo" ;
    vann:usageNote "Optional property. A logo representing some thing (e.g., organization)."@en ;
    rdfs:comment "A logo representing some thing (e.g., organization)."@en ;
    rdfs:domain :Organization ;
    rdfs:isDefinedBy foaf: ;
    rdfs:range rdfs:Resource .