owns leaf node


URI

http://w3id.org/um/cbcm/eu-cm-ontology#owns

Label

owns

Description

(owns ?ENTITY1 ?ENTITY2) means (owns ?ENTITY2 ?ENTITY1)

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) owns Organisation

Implementation

@prefix cbcm: <http://w3id.org/um/cbcm/eu-cm-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#> .

cbcm:owns a owl:ObjectProperty ;
    rdfs:label "owns"@en ;
    rdfs:comment "(owns ?ENTITY1 ?ENTITY2) means (owns ?ENTITY2 ?ENTITY1)"@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( cbcm:Organisation cbcm:Person ) ] ;
    rdfs:range cbcm:Organisation ;
    rdfs:seeAlso cbcm:ownedBy ;
    rdfs:subPropertyOf cbcm:hasCompanyStakeholder .