http://spdx.org/rdf/terms#checksum
The checksum property provides a mechanism that can be used to verify that the contents of a file or package have not changed
| DOMAIN | PROPERTY | RANGE |
|---|---|---|
| dcat:Distribution | spdx:checksum | spdx:Checksum |
@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 .