employed by leaf node


URI

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

Label

employed by

Description

(employedBy ?ENTITY1 ?ENTITY2) means that some agent (person or organisation) ?ENTITY1 is promised and delivered an incentive (usually financial) to perform some work for ?ENTITY2 where ?ENTITY2 is an organisation. This exchange is usually governed by law and formal regulations in the particular country or social context in which the work is being performed.

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) , Blank node (see implementation) employed by owl:Thing (inferred)

Implementation

@prefix cbcm: <http://w3id.org/um/cbcm/eu-cm-ontology#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

cbcm:employedBy a owl:ObjectProperty ;
    rdfs:label "employed by"@en ;
    cbcm:example "(employedBy person1 company1)"@en ;
    rdfs:comment "(employedBy ?ENTITY1 ?ENTITY2) means that some agent (person or organisation) ?ENTITY1 is promised and delivered an incentive (usually financial) to perform some work for ?ENTITY2 where ?ENTITY2 is an organisation. This exchange is usually governed by law and formal regulations in the particular country or social context in which the work is being performed."@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( cbcm:Organisation cbcm:Person ) ] ;
    rdfs:range [ a owl:Class ;
            owl:unionOf ( cbcm:Organisation cbcm:Person ) ] ;
    rdfs:subPropertyOf cbcm:hasCompanyStakeholder ;
    owl:inverseOf cbcm:employs .