BLER composition leaf node


URI

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

Label

BLER composition

Description

What is the employee board level representation (BLER) ratio going to be after the completion of the transaction?

The ratio is ranging from 0.00 (no BLER) to 0.33 (1/3 BLER) to 0.5 (50-50 Mitbestimmung) to (theoretically) 1.00, which would be 100% employee representatives on the board and no shareholder representatives.

Usage

DOMAINPROPERTYRANGE
Company transaction , Blank node (see implementation) BLER composition 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#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

cbcm:blerComposition a owl:DatatypeProperty ;
    rdfs:label "BLER composition"@en ;
    rdfs:comment """What is the employee board level representation (BLER) ratio going to be after the completion of the transaction?

The ratio is ranging from 0.00 (no BLER) to 0.33 (1/3 BLER) to 0.5 (50-50 Mitbestimmung) to (theoretically) 1.00, which would be 100% employee representatives on the board and no shareholder representatives."""@en ;
    rdfs:domain cbcm:CompanyTransaction ;
    rdfs:range [ a rdfs:Datatype ;
            owl:onDatatype xsd:float ;
            owl:withRestrictions ( [ xsd:minInclusive "0.0"^^xsd:float ] [ xsd:maxInclusive "1.0"^^xsd:float ] ) ] .