target country leaf node


URI

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

Label

target country

Description

(targetCountry ?ENTITY1 ?ENTITY2) means that some company transaction ?ENTITY1 has some transaction result (a company) whose place of business is located in the country ?ENTITY2.

Usage

DOMAINPROPERTYRANGE
owl:Thing (inferred) target country owl:Thing (inferred)

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:targetCountry a owl:ObjectProperty ;
    rdfs:label "target country"@en ;
    cbcm:example "(targetCountry crossBorderMerger1 belgium)" ;
    rdfs:comment "(targetCountry ?ENTITY1 ?ENTITY2) means that some company transaction ?ENTITY1 has some transaction result (a company) whose place of business is located in the country ?ENTITY2."@en ;
    rdfs:seeAlso cbcm:Country,
        cbcm:hasTransactionResult ;
    rdfs:subPropertyOf cbcm:involvesCountry .