@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:currency a owl:ObjectProperty ;
    rdfs:label "currency"@en ;
    rdfs:comment "code → ISO 4217 currency scheme."@en ;
    rdfs:isDefinedBy unece-mod:core ;
    skos:closeMatch schema:currency ;
    skos:definition "The currency of a monetary amount, as an ISO 4217 code."@en ;
    schema:domainIncludes unece:MonetaryAmount ;
    schema:rangeIncludes unece:currency-code-list ;
    unece:termStatus ts:proposed .

unece:value a owl:DatatypeProperty ;
    rdfs:label "value"@en ;
    rdfs:isDefinedBy unece-mod:core ;
    skos:closeMatch schema:value ;
    skos:definition "The numeric value of a measure or monetary amount."@en ;
    schema:domainIncludes unece:Measure,
        unece:MonetaryAmount ;
    schema:rangeIncludes xsd:decimal ;
    unece:termStatus ts:proposed .

unece:MonetaryAmount a owl:Class ;
    rdfs:label "Monetary Amount"@en ;
    rdfs:isDefinedBy unece-mod:core ;
    skos:closeMatch schema:MonetaryAmount ;
    skos:definition "A monetary value together with its currency."@en ;
    unece:objectNature on:value ;
    unece:termStatus ts:proposed .

