ontology:numberOfIndividuals leaf node


URI

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

Label

numIndividuals

Description

Number of individuals in the ontology

Usage

DOMAINPROPERTYRANGE
ontology:Ontology ontology:numberOfIndividuals xsd:integer

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

:numberOfIndividuals a owl:DatatypeProperty ;
    rdfs:label "numIndividuals"^^xsd:string ;
    rdfs:comment "Number of individuals in the ontology"^^xsd:string ;
    rdfs:domain :Ontology ;
    rdfs:range xsd:integer .