Companies have employees leaf node


URI

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

Label

Companies have employees

Description

Are the companies involved in the transaction having employees? Only one company needs to have employees for this property to be true

Usage

DOMAINPROPERTYRANGE
Company transaction Companies have employees boolean

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#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

cbcm:companiesHaveEmployees a owl:DatatypeProperty ;
    rdfs:label "Companies have employees"@en ;
    rdfs:comment "Are the companies involved in the transaction having employees? Only one company needs to have employees for this property to be true"@en ;
    rdfs:domain cbcm:CompanyTransaction ;
    rdfs:range xsd:boolean .