ontology:street leaf node


URI

http://omv.ontoware.org/2005/05/ontology#street

Label

street

Description

Name of the street and number (address).

Usage

DOMAINPROPERTYRANGE
ontology:Location ontology:street xsd:string

Implementation

@prefix : <http://omv.ontoware.org/2005/05/ontology#> .
@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#> .

:street a owl:DatatypeProperty ;
    rdfs:label "street"^^xsd:string ;
    rdfs:comment "Name of the street and number (address)."^^xsd:string ;
    rdfs:domain :Location ;
    rdfs:range xsd:string .