http://purl.org/goodrelations/v1#weight
The weight of the gr:ProductOrService.
Typical unit code(s): GRM for gram, KGM for kilogram, LBR for pound
DOMAIN | PROPERTY | RANGE |
---|---|---|
Blank node (see implementation) | gr:weight | gr:QuantitativeValue |
@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:weight a owl:ObjectProperty ;
rdfs:label "weight (0..1)"@en ;
rdfs:comment """The weight of the gr:ProductOrService.
Typical unit code(s): GRM for gram, KGM for kilogram, LBR for pound"""@en ;
rdfs:domain [ a owl:Class ;
owl:unionOf ( gr:ProductOrService <http://schema.org/Product> ) ] ;
rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
rdfs:range gr:QuantitativeValue ;
rdfs:subPropertyOf gr:quantitativeProductOrServiceProperty .