gr:condition leaf node


URI

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

Label

condition (0..1)

Description

A textual description of the condition of the product or service, or the products or services included in the offer (when attached to a gr:Offering)

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) gr:condition 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:condition a owl:DatatypeProperty ;
    rdfs:label "condition (0..1)"@en ;
    rdfs:comment "A textual description of the condition of the product or service, or the products or services included in the offer (when attached to a gr:Offering)"@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( gr:Offering gr:ProductOrService <http://schema.org/Product> ) ] ;
    rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
    rdfs:range rdfs:Literal .