has acquiring company leaf node


URI

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

Label

has acquiring company

Description

(hasAcquiringCompany ?ENTITY1 ?ENTITY2) means that some company merger transaction ?ENTITY1 produces a new company or alters an existing one (?ENTITY2) such that ?ENTITY2 will acquire (via a universal transfer of assets and liabilities) one or more other companies involved in the process ?ENTITY1.

Usage

DOMAINPROPERTYRANGE
Company merger has acquiring 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:hasAcquiringCompany a owl:ObjectProperty ;
    rdfs:label "has acquiring company"@en ;
    cbcm:example "(hasAcquiringCompany crossBorderMerger1 company1)" ;
    rdfs:comment "(hasAcquiringCompany ?ENTITY1 ?ENTITY2) means that some company merger transaction ?ENTITY1 produces a new company or alters an existing one (?ENTITY2) such that ?ENTITY2 will acquire (via a universal transfer of assets and liabilities) one or more other companies involved in the process ?ENTITY1."@en ;
    rdfs:domain cbcm:CompanyMerger ;
    rdfs:range cbcm:Company ;
    rdfs:seeAlso cbcm:AcquiringCompany,
        cbcm:CompanyMerger,
        cbcm:MergingCompany ;
    rdfs:subPropertyOf cbcm:hasTransactionResult .