requires document leaf node


URI

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

Label

requires document

Description

(requiresDocument ?ENTITY1 ?ENTITY2) means that some significant event or process ?ENTITY1 needs a compulsory document ?ENTITY2 to be submitted and reviewed before the process ?ENTITY1 can be completed.

Usage

DOMAINPROPERTYRANGE
Company transaction requires document Company mobility document

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:requiresDocument a owl:ObjectProperty ;
    rdfs:label "requires document"@en ;
    cbcm:example "(requiresDocument crossBorderMerger1 mergerPlan1)"@en ;
    rdfs:comment "(requiresDocument ?ENTITY1 ?ENTITY2) means that some significant event or process ?ENTITY1 needs a compulsory document ?ENTITY2 to be submitted and reviewed before the process ?ENTITY1 can be completed."@en ;
    rdfs:domain cbcm:CompanyTransaction ;
    rdfs:range cbcm:CompanyMobilityDocument ;
    rdfs:subPropertyOf cbcm:cbcmDocumentRelation .