gr:durationOfWarrantyInMonths leaf node


URI

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

Label

duration of warranty in months (0..1)

Description

This property specifies the duration of the gr:WarrantyPromise in months.

Usage

DOMAINPROPERTYRANGE
gr:WarrantyPromise gr:durationOfWarrantyInMonths xsd:int

Implementation

@prefix gr: <http://purl.org/goodrelations/v1#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

gr:durationOfWarrantyInMonths a owl:DatatypeProperty ;
    rdfs:label "duration of warranty in months (0..1)"@en ;
    rdfs:comment "This property specifies the duration of the gr:WarrantyPromise in months."@en ;
    rdfs:domain gr:WarrantyPromise ;
    rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
    rdfs:range xsd:int .