ontology:FormalityLevel leaf node


URI

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

Label

FormalityLevel

Description

The level of formality of an ontology

Usage

Instances of ontology:FormalityLevel can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE

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#> .

:FormalityLevel a owl:Class ;
    rdfs:label "FormalityLevel"^^xsd:string ;
    rdfs:comment "The level of formality of an ontology"^^xsd:string ;
    rdfs:subClassOf [ a owl:Restriction ;
            owl:cardinality "1"^^xsd:nonNegativeInteger ;
            owl:onProperty :name ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty :name ],
        [ a owl:Restriction ;
            owl:maxCardinality "1"^^xsd:int ;
            owl:onProperty :description ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty :description ],
        owl:Thing .