ontology:URI leaf node


URI

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

Label

URI

Description

The URI of the ontology which is described by this metadata

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) ontology:URI xsd:string

Implementation

@prefix : <http://omv.ontoware.org/2005/05/ontology#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

:URI a owl:DatatypeProperty ;
    rdfs:label "URI"^^xsd:string ;
    rdfs:comment "The URI of the ontology which is described by this metadata"^^xsd:string ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( :Ontology :OntologyDomain ) ] ;
    rdfs:range xsd:string .