issued by organisation leaf node


URI

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

Label

issued by organisation

Description

(issuedByOrganisation ?ENTITY1 ?ENTITY2) means that some document or publication, ?ENTITY1, was created (and possibly delivered or administered to another entity) by some entity ?ENTITY2.

Usage

DOMAINPROPERTYRANGE
Company mobility document issued by organisation Organisation

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:issuedByOrganisation a owl:ObjectProperty ;
    rdfs:label "issued by organisation"@en ;
    cbcm:example "(issuedByOrganisation document1 organisation1)"@en ;
    rdfs:comment "(issuedByOrganisation ?ENTITY1 ?ENTITY2) means that some document or publication, ?ENTITY1, was created (and possibly delivered or administered to another entity) by some entity ?ENTITY2."@en ;
    rdfs:domain cbcm:CompanyMobilityDocument ;
    rdfs:range cbcm:Organisation ;
    rdfs:subPropertyOf cbcm:cbcmDocumentRelation .