has recipient company leaf node


URI

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

Label

has recipient company

Description

(hasRecipientCompany ?ENTITY1 ?ENTITY2) means that some company division transaction ?ENTITY1 produces two or more distinct companies, one of which is ?ENTITY2 (a so-called "recipient company").

Usage

DOMAINPROPERTYRANGE
Company division has recipient 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:hasRecipientCompany a owl:ObjectProperty ;
    rdfs:label "has recipient company"@en ;
    cbcm:example "(hasMergingCompany crossBorderMerger1 company1)" ;
    rdfs:comment "(hasRecipientCompany ?ENTITY1 ?ENTITY2) means that some company division transaction ?ENTITY1 produces two or more distinct companies, one of which is ?ENTITY2 (a so-called \"recipient company\")."@en ;
    rdfs:domain cbcm:CompanyDivision ;
    rdfs:range cbcm:Company ;
    rdfs:seeAlso cbcm:AcquiringCompany,
        cbcm:CompanyMerger,
        cbcm:MergingCompany ;
    rdfs:subPropertyOf cbcm:hasTransactionResult .