gr:hasCurrency leaf node


URI

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

Label

has currency (1..1)

Description

The currency for all prices in the gr:PriceSpecification given using the ISO 4217 standard (3 characters).

Usage

DOMAINPROPERTYRANGE
gr:PriceSpecification gr:hasCurrency xsd:string

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:hasCurrency a owl:DatatypeProperty ;
    rdfs:label "has currency (1..1)"@en ;
    rdfs:comment "The currency for all prices in the gr:PriceSpecification given using the ISO 4217 standard (3 characters)."@en ;
    rdfs:domain gr:PriceSpecification ;
    rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
    rdfs:range xsd:string .