ontology:state leaf node


URI

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

Label

state

Description

The state of a country.

Usage

DOMAINPROPERTYRANGE
ontology:Location ontology:state 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#> .

:state a owl:DatatypeProperty ;
    rdfs:label "state"^^xsd:string ;
    rdfs:comment "The state of a country."^^xsd:string ;
    rdfs:domain :Location ;
    rdfs:range xsd:string .