@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:digestMultibase a owl:DatatypeProperty ;
    rdfs:label "digest multibase"@en ;
    rdfs:isDefinedBy unece-mod:core ;
    skos:definition "A cryptographic hash of the linked content."@en ;
    schema:domainIncludes unece:Link ;
    schema:rangeIncludes xsd:string ;
    unece:termStatus ts:proposed .

unece:linkName a owl:DatatypeProperty ;
    rdfs:label "link name"@en ;
    rdfs:isDefinedBy unece-mod:core ;
    skos:closeMatch schema:name ;
    skos:definition "The name of the link."@en ;
    schema:domainIncludes unece:Link ;
    schema:rangeIncludes xsd:string ;
    unece:termStatus ts:proposed .

unece:linkType a owl:DatatypeProperty ;
    rdfs:label "link type"@en ;
    rdfs:isDefinedBy unece-mod:core ;
    skos:definition "The type/relationship of the link."@en ;
    schema:domainIncludes unece:Link ;
    schema:rangeIncludes xsd:string ;
    unece:termStatus ts:proposed .

unece:linkURL a owl:DatatypeProperty ;
    rdfs:label "link URL"@en ;
    rdfs:isDefinedBy unece-mod:core ;
    skos:closeMatch schema:url ;
    skos:definition "The URL of the link."@en ;
    schema:domainIncludes unece:Link ;
    schema:rangeIncludes xsd:anyURI ;
    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:Link a owl:Class ;
    rdfs:label "Link"@en ;
    rdfs:isDefinedBy unece-mod:core ;
    skos:definition "A URL link plus associated metadata (name, type, hash)."@en ;
    unece:objectNature on:value ;
    unece:termStatus ts:proposed .

