NTNames:name_en leaf node


URI

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

Label

English name

Description

The human language name of an Object in English.
Since Protege (3.0 build 141) doesn't seem to support loading and saving xml:lang attributes on properties, different subproperties are used for representing names in different languages.

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) NTNames:name_en xsd:string

Implementation

@prefix : <http://semanticbible.org/ns/2006/NTNames#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

:name_en a owl:DatatypeProperty ;
    rdfs:label "English name"@en ;
    rdfs:comment """The human language name of an Object in English. 
Since Protege (3.0 build 141) doesn't seem to support loading and saving xml:lang attributes on properties, different subproperties are used for representing names in different languages."""@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( :Object :BeliefSystem :FixedHoliday :HumanAttribute ) ] ;
    rdfs:range xsd:string .