ontology:status leaf node


URI

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

Label

status

Description

It specifies the tracking information for the contents of the ontology. Pre-defined values

Usage

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

:status a owl:DatatypeProperty ;
    rdfs:label "status"^^xsd:string ;
    rdfs:comment "It specifies the tracking information for the contents of the ontology. Pre-defined values"^^xsd:string ;
    rdfs:domain :Ontology ;
    rdfs:range xsd:string .