ontology:expressiveness leaf node


URI

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

Label

expressiveness

Description

Indicates the expressiveness of the language used by the ontology (that could be expressed in terms of the underlying DL, e.g. ALCN(D), SHIF(D), etc.)

Usage

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

:expressiveness a owl:DatatypeProperty ;
    rdfs:comment "Indicates the expressiveness of the language used by the ontology (that could be expressed in terms of the underlying DL, e.g. ALCN(D), SHIF(D), etc.)"^^xsd:string ;
    rdfs:domain :Ontology ;
    rdfs:range xsd:string .