sdo:name leaf node


URI

https://schema.org/name

Label

has main title

Description

The name of the item. The main title.

Usage

DOMAINPROPERTYRANGE
sdo:Thing sdo:name xsd:string

Implementation

@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sdo: <https://schema.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

sdo:name a rdf:Property ;
    rdfs:label "has main title"@en,
        "heeft hoofdtitel"@nl ;
    rdfs:comment "The name of the item. The main title."@en,
        "De naam van het item. De hoofdtitel."@nl ;
    rdfs:domain sdo:Thing ;
    rdfs:range xsd:string .