spdx:checksum leaf node


URI

http://spdx.org/rdf/terms#checksum

Label

checksum

Description

The checksum property provides a mechanism that can be used to verify that the contents of a file or package have not changed

Usage

DOMAINPROPERTYRANGE
dcat:Distribution spdx:checksum spdx:Checksum

Implementation

@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix spdx: <http://spdx.org/rdf/terms#> .

spdx:checksum a owl:ObjectProperty ;
    rdfs:label "checksum" ;
    rdfs:domain dcat:Distribution ;
    rdfs:isDefinedBy spdx: ;
    rdfs:range spdx:Checksum ;
    skos:definition "The checksum property provides a mechanism that can be used to verify that the contents of a file or package have not changed"@en .