http://purl.org/goodrelations/v1#isListPrice
This boolean attribute indicates whether a gr:UnitPriceSpecification is a list price (usually a vendor recommendation) or not. "true" indicates it is a list price, "false" indicates it is not.
DEPRECATED. Use the gr:priceType property instead.
DOMAIN | PROPERTY | RANGE |
---|---|---|
gr:UnitPriceSpecification | gr:isListPrice | xsd:boolean |
@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:isListPrice a owl:DatatypeProperty ;
rdfs:label "is list price (DEPRECATED)"@en ;
rdfs:comment """This boolean attribute indicates whether a gr:UnitPriceSpecification is a list price (usually a vendor recommendation) or not. "true" indicates it is a list price, "false" indicates it is not.
DEPRECATED. Use the gr:priceType property instead."""@en ;
rdfs:domain gr:UnitPriceSpecification ;
rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
rdfs:range xsd:boolean ;
owl:deprecated true .