@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:idScheme a owl:ObjectProperty ;
    rdfs:label "ID scheme"@en ;
    rdfs:isDefinedBy unece-mod:core ;
    skos:closeMatch schema:propertyID ;
    skos:definition "The scheme under which this identifier is registered."@en ;
    schema:domainIncludes unece:Identifier ;
    schema:rangeIncludes unece:IdentifierScheme ;
    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:registeredId a owl:DatatypeProperty ;
    rdfs:label "registered ID"@en ;
    rdfs:isDefinedBy unece-mod:core ;
    skos:closeMatch schema:value ;
    skos:definition "The identifier value as registered within its scheme (e.g. the GTIN, LEI or DUNS number)."@en ;
    schema:domainIncludes unece:Identifier ;
    schema:rangeIncludes xsd:string ;
    unece:termStatus ts:proposed .

unece:Identifier a owl:Class ;
    rdfs:label "Identifier"@en ;
    rdfs:isDefinedBy unece-mod:core ;
    skos:closeMatch schema:PropertyValue ;
    skos:definition "A single identifier issued for an entity within a scheme: the registered value plus the issuing scheme, with an optional label."@en ;
    unece:objectNature on:value ;
    unece:termStatus ts:proposed .

