gr:valueAddedTaxIncluded leaf node


URI

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

Label

value added tax included (0..1)

Description

This property specifies whether the applicable value-added tax (VAT) is included in the price of the gr:PriceSpecification or not.

Note: This is a simple representation which may not properly reflect all details of local taxation.

Usage

DOMAINPROPERTYRANGE
gr:PriceSpecification gr:valueAddedTaxIncluded xsd:boolean

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:valueAddedTaxIncluded a owl:DatatypeProperty ;
    rdfs:label "value added tax included (0..1)"@en ;
    rdfs:comment """This property specifies whether the applicable value-added tax (VAT)  is included in the price of the gr:PriceSpecification or not.

Note: This is a simple representation which may not properly reflect all details of local taxation."""@en ;
    rdfs:domain gr:PriceSpecification ;
    rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
    rdfs:range xsd:boolean .