@prefix on: <https://test.uncefact.org/vocabulary/object-nature/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <https://schema.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix ts: <https://test.uncefact.org/vocabulary/term-status/> .
@prefix unece: <https://test.uncefact.org/vocabulary/> .
@prefix unece-mod: <https://test.uncefact.org/vocabulary/module/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

unece:code a owl:DatatypeProperty ;
    rdfs:label "code"@en ;
    rdfs:comment "Also the code qualifier on classification / conformity-topic join nodes."@en ;
    rdfs:isDefinedBy unece-mod:core ;
    skos:definition "The code value within a classification scheme."@en ;
    schema:domainIncludes unece:Score ;
    schema:rangeIncludes xsd:string ;
    unece:termStatus ts:proposed .

unece:definition a owl:DatatypeProperty ;
    rdfs:label "definition"@en ;
    rdfs:isDefinedBy unece-mod:core ;
    skos:definition "The definition of a classification code."@en ;
    schema:domainIncludes unece:Score ;
    schema:rangeIncludes xsd:string ;
    unece:termStatus ts:proposed .

unece:rank a owl:DatatypeProperty ;
    rdfs:label "rank"@en ;
    rdfs:isDefinedBy unece-mod:conformity ;
    skos:definition "The ordinal rank of the score within its framework."@en ;
    schema:domainIncludes unece:Score ;
    schema:rangeIncludes xsd:integer ;
    unece:termStatus ts:proposed .

unece:Score a owl:Class ;
    rdfs:label "Score"@en ;
    rdfs:isDefinedBy unece-mod:conformity ;
    skos:definition "A single score (code, definition, rank) within a scoring framework."@en ;
    unece:objectNature on:value ;
    unece:termStatus ts:proposed .

