gr:description leaf node


URI

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

Label

description (0..1)

Description

A short textual description of the resource.

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

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) gr:description 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:description a owl:DatatypeProperty ;
    rdfs:label "description (0..1)"@en ;
    rdfs:comment """A short textual description of the resource. 

This property is semantically equivalent to rdfs:comment 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 .