@prefix on: <https://vocab.uncece-test.workers.dev/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://vocab.uncece-test.workers.dev/term-status/> .
@prefix unece: <https://vocab.uncece-test.workers.dev/> .
@prefix unece-mod: <https://vocab.uncece-test.workers.dev/module/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

unece:disposition a owl:DatatypeProperty ;
    rdfs:label "disposition"@en ;
    rdfs:comment "code → EPCIS CBV Disposition; bound downstream (Phase 3)."@en ;
    rdfs:isDefinedBy unece-mod:production ;
    skos:definition "The EPCIS-style disposition (business state) of the product within the event."@en ;
    schema:domainIncludes unece:EventProduct ;
    schema:rangeIncludes xsd:string ;
    unece:termStatus ts:proposed .

unece:eventProduct a owl:ObjectProperty ;
    rdfs:label "product"@en ;
    rdfs:isDefinedBy unece-mod:production ;
    skos:definition "The product (or material) the event product refers to."@en ;
    schema:domainIncludes unece:EventProduct ;
    schema:rangeIncludes unece:Material,
        unece:Product ;
    unece:termStatus ts:proposed .

unece:quantity a owl:ObjectProperty ;
    rdfs:label "quantity"@en ;
    rdfs:isDefinedBy unece-mod:production ;
    skos:definition "The quantity of product involved, as a measure."@en ;
    schema:domainIncludes unece:EventProduct ;
    schema:rangeIncludes unece:Measure ;
    unece:termStatus ts:proposed .

unece:EventProduct a owl:Class ;
    rdfs:label "event product"@en ;
    rdfs:isDefinedBy unece-mod:production ;
    skos:closeMatch schema:StructuredValue ;
    skos:definition "A product and its quantity/disposition within a lifecycle event. An identity-less value object."@en ;
    unece:objectNature on:value ;
    unece:termStatus ts:proposed .

