@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:dutyAmount a owl:ObjectProperty ;
    rdfs:label "duty amount"@en ;
    rdfs:isDefinedBy unece-mod:regulatory ;
    skos:definition "The assessed duty/tax/fee amount."@en ;
    schema:domainIncludes unece:DutyTaxFee ;
    schema:rangeIncludes unece:MonetaryAmount ;
    unece:termStatus ts:proposed .

unece:dutyRate a owl:DatatypeProperty ;
    rdfs:label "duty rate"@en ;
    rdfs:isDefinedBy unece-mod:regulatory ;
    skos:definition "The rate applied to assess the duty/tax/fee."@en ;
    schema:domainIncludes unece:DutyTaxFee ;
    schema:rangeIncludes xsd:decimal ;
    unece:termStatus ts:proposed .

unece:dutyTypeCode a owl:ObjectProperty ;
    rdfs:label "duty type code"@en ;
    rdfs:comment "code → duty/tax-type scheme (Phase 3)."@en ;
    rdfs:isDefinedBy unece-mod:regulatory ;
    skos:definition "The type of duty, tax or fee."@en ;
    schema:domainIncludes unece:DutyTaxFee ;
    schema:rangeIncludes unece:any-code ;
    unece:termStatus ts:proposed .

unece:DutyTaxFee a owl:Class ;
    rdfs:label "Duty Tax Fee"@en ;
    rdfs:comment "Maps to WCO DutyTaxFee; distinct from trade-domain TradeTax (commercial VAT)."@en ;
    rdfs:isDefinedBy unece-mod:regulatory ;
    skos:definition "A customs duty, tax or fee assessed on a declared goods item."@en ;
    unece:objectNature on:value ;
    unece:termStatus ts:proposed .

