ontology:naturalLanguage leaf node


URI

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

Label

naturalLanguage

Description

The language of the content of the ontology, i.e. English, German, etc.

Usage

DOMAINPROPERTYRANGE
ontology:Ontology ontology:naturalLanguage 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#> .

:naturalLanguage a owl:DatatypeProperty ;
    rdfs:label "naturalLanguage"^^xsd:string ;
    rdfs:comment """The language of the content of the ontology,
i.e. English, German, etc."""^^xsd:string ;
    rdfs:domain :Ontology ;
    rdfs:range xsd:string .