http://xmlns.com/foaf/0.1/name
A name for some thing (e.g., organization, user).
| DOMAIN | PROPERTY | RANGE |
|---|---|---|
| rdfs:Resource | foaf:name | rdfs:Literal |
@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:name a owl:DatatypeProperty ;
dcterms:identifier "foaf:name" ;
vann:usageNote "Recommended property. A name for some thing (e.g., organization, user)."@en ;
rdfs:comment "A name for some thing (e.g., organization, user)."@en ;
rdfs:domain rdfs:Resource ;
rdfs:isDefinedBy foaf: ;
rdfs:range rdfs:Literal .