@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:applicableMaterial a owl:ObjectProperty ;
    rdfs:label "applicable material"@en ;
    rdfs:comment "added from BSP (default-keep re-triage)"@en ;
    rdfs:isDefinedBy unece-mod:core ;
    skos:definition "Material applicable for this supply chain trade line item."@en ;
    schema:domainIncludes unece:Image ;
    schema:rangeIncludes unece:Material ;
    unece:termStatus ts:proposed .

unece:imageData a owl:DatatypeProperty ;
    rdfs:label "image data"@en ;
    rdfs:isDefinedBy unece-mod:core ;
    skos:definition "The base64-encoded image data."@en ;
    schema:domainIncludes unece:Image ;
    schema:rangeIncludes xsd:string ;
    unece:termStatus ts:proposed .

unece:mediaType a owl:DatatypeProperty ;
    rdfs:label "media type"@en ;
    rdfs:isDefinedBy unece-mod:core ;
    skos:definition "The IANA media (MIME) type."@en ;
    skos:exactMatch schema:encodingFormat ;
    schema:domainIncludes unece:Image,
        unece:Link ;
    schema:rangeIncludes xsd:string ;
    unece:termStatus ts:proposed .

unece:Image a owl:Class ;
    rdfs:label "Image"@en ;
    rdfs:isDefinedBy unece-mod:core ;
    skos:closeMatch schema:ImageObject ;
    skos:definition "A binary image encoded as base64 text with its media type."@en ;
    unece:objectNature on:value ;
    unece:termStatus ts:proposed .

