Is SE creation leaf node


URI

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

Label

Is SE creation

Description

Variable indicating whether this case concerns an SE-creation (yes/no) to distinguish creations of SEs from other transactions

Usage

DOMAINPROPERTYRANGE
Company transaction Is SE creation 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:isSECreation a owl:DatatypeProperty ;
    rdfs:label "Is SE creation"@en ;
    rdfs:comment "Variable indicating whether this case concerns an SE-creation (yes/no) to distinguish creations of SEs from other transactions"@en ;
    rdfs:domain cbcm:CompanyTransaction ;
    rdfs:range xsd:boolean .