ontology:country leaf node


URI

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

Label

country

Description

The name of the country

Usage

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

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