source country leaf node


URI

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

Label

source country

Description

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

Usage

DOMAINPROPERTYRANGE
owl:Thing (inferred) source 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:sourceCountry a owl:ObjectProperty ;
    rdfs:label "source country"@en ;
    cbcm:example "(sourceCountry crossBorderMerger1 france)" ;
    rdfs:comment "(sourceCountry ?ENTITY1 ?ENTITY2) means that some company transaction ?ENTITY1 has some transaction input (a company) whose place of business is located in the country ?ENTITY2."@en ;
    rdfs:seeAlso cbcm:Country,
        cbcm:hasTransactionInput ;
    rdfs:subPropertyOf cbcm:involvesCountry .