has transaction input


URI

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

Label

has transaction input

Description

(hasTransactionInput ?ENTITY1 ?ENTITY2) means that some company transaction ?ENTITY1 has a prerequisite entity ?ENTITY2 that needs to be considered, assessed, or modified during the transaction referred to by ?ENTITY1.

Usage

DOMAINPROPERTYRANGE
Company transaction has transaction input 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:hasTransactionInput a owl:ObjectProperty ;
    rdfs:label "has transaction input"@en ;
    cbcm:example "(hasTransactionInput crossBorderMerger1 company1)" ;
    rdfs:comment "(hasTransactionInput ?ENTITY1 ?ENTITY2) means that some company transaction ?ENTITY1 has a prerequisite entity ?ENTITY2 that needs to be considered, assessed, or modified during the transaction referred to by ?ENTITY1."@en ;
    rdfs:domain cbcm:CompanyTransaction ;
    rdfs:range cbcm:Company ;
    rdfs:seeAlso cbcm:CompanyTransaction ;
    rdfs:subPropertyOf cbcm:cbcmTransactionRelation ;
    owl:inverseOf cbcm:isTransactionInputOf .