transaction validated by document leaf node


URI

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

Label

transaction validated by document

Description

(transactionValidatedByDocument ?ENTITY1 ?ENTITY2) means that some company transaction ?ENTITY1 went through a process of approval and assessment through various criteria such as veracity, eligibility, legal relevance etc. and a document ?ENTITY2 was produced to prove the satisfaction of the critieria by ?ENTITY1.

Usage

DOMAINPROPERTYRANGE
Company transaction transaction validated by 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:transactionValidatedByDocument a owl:ObjectProperty ;
    rdfs:label "transaction validated by document"@en ;
    cbcm:example "(transactionValidatedByDocument crossBorderMerger1 mergerCertificate1)"@en ;
    rdfs:comment "(transactionValidatedByDocument ?ENTITY1 ?ENTITY2) means that some company transaction ?ENTITY1 went through a process of approval and assessment through various criteria such as veracity, eligibility, legal relevance etc. and a document ?ENTITY2 was produced to prove the satisfaction of the critieria by ?ENTITY1."@en ;
    rdfs:domain cbcm:CompanyTransaction ;
    rdfs:range cbcm:CompanyMobilityDocument ;
    rdfs:seeAlso cbcm:CompanyMobilityDocument,
        cbcm:CompanyTransaction ;
    rdfs:subPropertyOf cbcm:cbcmDocumentRelation .