has parent company leaf node


URI

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

Label

has parent company

Description

(hasParentCompany ?ENTITY1 ?ENTITY2) means that some company ?ENTITY1 is owned and under direct or indirect control by the company ?ENTITY2.

Usage

DOMAINPROPERTYRANGE
Company has parent company Company

Implementation

@prefix cbcm: <http://w3id.org/um/cbcm/eu-cm-ontology#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

cbcm:hasParentCompany a owl:ObjectProperty ;
    rdfs:label "has parent company"@en ;
    cbcm:example "(hasParentCompany company1 company2)"@en ;
    rdfs:comment "(hasParentCompany ?ENTITY1 ?ENTITY2) means that some company ?ENTITY1 is owned and under direct or indirect control by the company ?ENTITY2."@en ;
    rdfs:domain cbcm:Company ;
    rdfs:range cbcm:Company ;
    rdfs:seeAlso cbcm:hasSubsidiaryCompany ;
    rdfs:subPropertyOf cbcm:cbcmOrganisationRelation ;
    owl:inverseOf cbcm:hasSubsidiaryCompany .