NACE code leaf node


URI

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

Label

NACE code

Description

NACE Classification Code for companies. NACE (Nomenclature des Activités Économiques dans la Communauté Européenne) is a European industry standard classification system similar in function to Standard Industry Classification (SIC) and North American Industry Classification System (NAICS) for classifying business activities. From EUROSTAT

Usage

DOMAINPROPERTYRANGE
Company , Blank node (see implementation) NACE code 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:naceCode a owl:DatatypeProperty ;
    rdfs:label "NACE code"@en ;
    rdfs:comment "NACE Classification Code for companies. NACE (Nomenclature des Activités Économiques dans la Communauté Européenne) is a European industry standard classification system similar in function to Standard Industry Classification (SIC) and North American Industry Classification System (NAICS) for classifying business activities. From EUROSTAT"@en ;
    rdfs:domain cbcm:Company ;
    rdfs:range [ a rdfs:Datatype ;
            owl:onDatatype xsd:positiveInteger ;
            owl:withRestrictions ( [ xsd:minInclusive "1000"^^xsd:positiveInteger ] [ xsd:maxInclusive "9999"^^xsd:positiveInteger ] ) ] .