NTNames:subregionOf leaf node


URI

http://semanticbible.org/ns/2006/NTNames#subregionOf

Label

subregion of

Description

A smaller GeographicArea is a subregionOf a larger one (e.g. Jerusalem is a subregionOf Israel).

Usage

DOMAINPROPERTYRANGE
NTNames:GeographicArea NTNames:subregionOf NTNames:GeographicArea

Implementation

@prefix : <http://semanticbible.org/ns/2006/NTNames#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

:subregionOf a owl:ObjectProperty,
        owl:TransitiveProperty ;
    rdfs:label "subregion of"@en ;
    rdfs:comment "A smaller GeographicArea is a subregionOf a larger one (e.g. Jerusalem is a subregionOf Israel)."@en ;
    rdfs:domain :GeographicArea ;
    rdfs:range :GeographicArea ;
    owl:inverseOf :subregion .