@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/> .

unece:appliesCharge a owl:ObjectProperty ;
    rdfs:label "applies charge"@en ;
    rdfs:isDefinedBy unece-mod:trade ;
    skos:definition "An allowance or charge applied to a trade agreement or item."@en ;
    schema:domainIncludes unece:TradeAgreement,
        unece:TradeItem ;
    schema:rangeIncludes unece:AllowanceCharge ;
    unece:termStatus ts:proposed .

unece:appliesTax a owl:ObjectProperty ;
    rdfs:label "applies tax"@en ;
    rdfs:isDefinedBy unece-mod:trade ;
    skos:definition "A tax applied to a trade agreement or item."@en ;
    schema:domainIncludes unece:TradeAgreement,
        unece:TradeItem ;
    schema:rangeIncludes unece:TradeTax ;
    unece:termStatus ts:proposed .

unece:lineAmount a owl:ObjectProperty ;
    rdfs:label "line amount"@en ;
    rdfs:isDefinedBy unece-mod:trade ;
    skos:definition "The net amount of the trade item line."@en ;
    schema:domainIncludes unece:TradeItem ;
    schema:rangeIncludes unece:MonetaryAmount ;
    unece:termStatus ts:proposed .

unece:orderedQuantity a owl:ObjectProperty ;
    rdfs:label "ordered quantity"@en ;
    rdfs:isDefinedBy unece-mod:trade ;
    skos:definition "The quantity ordered for the trade item."@en ;
    schema:domainIncludes unece:TradeItem ;
    schema:rangeIncludes unece:Measure ;
    unece:termStatus ts:proposed .

unece:suppliedProduct a owl:ObjectProperty ;
    rdfs:label "supplied product"@en ;
    rdfs:isDefinedBy unece-mod:trade ;
    skos:closeMatch schema:product ;
    skos:definition "The product supplied as this trade item."@en ;
    schema:domainIncludes unece:TradeItem ;
    schema:rangeIncludes unece:Product ;
    unece:termStatus ts:proposed .

unece:unitPrice a owl:ObjectProperty ;
    rdfs:label "unit price"@en ;
    rdfs:isDefinedBy unece-mod:trade ;
    skos:definition "The price per unit of the trade item."@en ;
    schema:domainIncludes unece:TradeItem ;
    schema:rangeIncludes unece:MonetaryAmount ;
    unece:termStatus ts:proposed .

unece:TradeItem a owl:Class ;
    rdfs:label "Trade Item"@en ;
    rdfs:isDefinedBy unece-mod:trade ;
    skos:definition "The lowest level of commercial information in a trade — a product/service line with code, quantity and unit price."@en ;
    unece:objectNature on:value ;
    unece:termStatus ts:proposed .

