topos:hasPrice leaf node


URI

http://toposkg.di.uoa.gr/ontology/hasPrice

Label

price

Description

ToposKG predicate aligned with the OpenStreetMap key price.

Usage

DOMAINPROPERTYRANGE
topos:POI topos:hasPrice xsd:string

Implementation

@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix topos: <http://toposkg.di.uoa.gr/ontology/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

topos:hasPrice a owl:DatatypeProperty ;
    rdfs:label "price"@en ;
    dcterms:source <https://www.openstreetmap.org/> ;
    topos:osmKey "price" ;
    topos:osmTag "price=*" ;
    rdfs:domain topos:POI ;
    rdfs:isDefinedBy <https://wiki.openstreetmap.org/wiki/Key:price> ;
    rdfs:range xsd:string ;
    rdfs:subPropertyOf owl:topDataProperty ;
    skos:definition "ToposKG predicate aligned with the OpenStreetMap key price."@en .