ontology:endorsedBy leaf node


URI

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

Label

endorsedBy

Description

Indicates the parties (i.e. organisations, people) that have expressed support or approval to the this ontology.

Usage

DOMAINPROPERTYRANGE
ontology:Ontology ontology:endorsedBy ontology:Party

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

:endorsedBy a owl:ObjectProperty ;
    rdfs:comment "Indicates the parties (i.e. organisations, people) that have expressed support or approval to the this ontology."^^xsd:string ;
    rdfs:domain :Ontology ;
    rdfs:range :Party .