gr:name leaf node


URI

http://purl.org/goodrelations/v1#name

Label

name (0..1)

Description

A short text describing the respective resource.

This property is semantically equivalent to dcterms:title and rdfs:label and just meant as a handy shortcut for marking up data.

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) gr:name rdfs:Literal

Implementation

@prefix gr: <http://purl.org/goodrelations/v1#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

gr:name a owl:DatatypeProperty ;
    rdfs:label "name (0..1)"@en ;
    rdfs:comment """A short text describing the respective resource.

This property is semantically equivalent to dcterms:title and rdfs:label and just meant as a handy shortcut for marking up data."""@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( owl:Thing gr:Brand gr:BusinessEntity gr:BusinessEntityType gr:BusinessFunction gr:DayOfWeek gr:DeliveryChargeSpecification gr:DeliveryMethod gr:DeliveryModeParcelService gr:Individual gr:Location gr:Offering gr:OpeningHoursSpecification gr:PaymentChargeSpecification gr:PaymentMethod gr:PaymentMethodCreditCard gr:PriceSpecification gr:ProductOrService gr:ProductOrServiceModel gr:QualitativeValue gr:QuantitativeValue gr:QuantitativeValueFloat gr:QuantitativeValueInteger gr:SomeItems gr:TypeAndQuantityNode gr:UnitPriceSpecification gr:WarrantyPromise gr:WarrantyScope ) ] ;
    rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
    rdfs:range rdfs:Literal .