@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:description a owl:DatatypeProperty ;
    rdfs:label "description"@en ;
    rdfs:isDefinedBy unece-mod:core ;
    skos:definition "A textual description of an item."@en ;
    skos:exactMatch schema:description ;
    schema:rangeIncludes xsd:string ;
    unece:termStatus ts:proposed .

unece:identifier a owl:ObjectProperty ;
    rdfs:label "identifier"@en ;
    rdfs:isDefinedBy unece-mod:core ;
    skos:closeMatch schema:identifier ;
    skos:definition "An identifier of this entity within some scheme, as an Identifier value object; an entity may bear several (e.g. a GTIN and an internal SKU). Its own resolvable identity is the node URI (@id)."@en ;
    schema:rangeIncludes unece:Identifier ;
    unece:termStatus ts:proposed .

unece:inputProduct a owl:ObjectProperty ;
    rdfs:label "input product"@en ;
    rdfs:isDefinedBy unece-mod:production ;
    skos:definition "A product/material consumed by the make event."@en ;
    schema:domainIncludes unece:MakeEvent ;
    schema:rangeIncludes unece:Material,
        unece:Product ;
    unece:termStatus ts:proposed .

unece:madeAtFacility a owl:ObjectProperty ;
    rdfs:label "made at facility"@en ;
    rdfs:isDefinedBy unece-mod:production ;
    skos:definition "The facility where the make event occurs."@en ;
    schema:domainIncludes unece:MakeEvent ;
    schema:rangeIncludes unece:Facility ;
    unece:termStatus ts:proposed .

unece:name a owl:DatatypeProperty ;
    rdfs:label "name"@en ;
    rdfs:isDefinedBy unece-mod:core ;
    skos:definition "The name of an item."@en ;
    skos:exactMatch schema:name ;
    schema:domainIncludes unece:Identifier ;
    schema:rangeIncludes xsd:string ;
    unece:termStatus ts:proposed .

unece:outputProduct a owl:ObjectProperty ;
    rdfs:label "output product"@en ;
    rdfs:isDefinedBy unece-mod:production ;
    skos:definition "A product produced by the make event."@en ;
    schema:domainIncludes unece:MakeEvent ;
    schema:rangeIncludes unece:Product ;
    unece:termStatus ts:proposed .

unece:MakeEvent a owl:Class ;
    rdfs:label "Make Event"@en ;
    rdfs:isDefinedBy unece-mod:production ;
    rdfs:subClassOf unece:LifecycleEvent ;
    skos:closeMatch <https://ref.gs1.org/epcis/TransformationEvent> ;
    skos:definition "Transformation (manufacture/production) of input products into output products."@en ;
    unece:objectNature on:entity ;
    unece:termStatus ts:proposed .

