-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Labels
status:resolution-providedResolution statement present, not yet applied in draftResolution statement present, not yet applied in drafttype:bugThis is broken and to be fixedThis is broken and to be fixed
Description
I think the example 5 is wrong.
The property dct:rights uses class dct:LicenseDocument as a range, but should use class dct:RightsStatement instead.
The example is now:
@prefix adms: <http://www.w3.org/ns/adms#> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dct: <http://purl.org/dc/terms/> .
[] a dcat:Distribution ;
dct:accessRights <http://inspire.ec.europa.eu/metadata-codelist/LimitationsOnPublicAccess/INSPIRE_Directive_Article13_1e> ;
dct:description "NoiseContours_air_lnight"@en ;
dct:format <http://publications.europa.eu/resource/authority/file-type/TIFF> ;
dct:license <http://publications.europa.eu/resource/authority/licence/CC_BY_4_0> ;
dct:rights [ a dct:LicenseDocument ;
dct:description "The full noise contour maps data set is in principle only available for EEA internal use. A public version of the data set may in the future be available, excluding those data sets for which there is any limitation or restriction in their use (beyond acknowledgement)."@en ] ;
...
But should be:
@prefix adms: <http://www.w3.org/ns/adms#> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dct: <http://purl.org/dc/terms/> .
[] a dcat:Distribution ;
dct:accessRights <http://inspire.ec.europa.eu/metadata-codelist/LimitationsOnPublicAccess/INSPIRE_Directive_Article13_1e> ;
dct:description "NoiseContours_air_lnight"@en ;
dct:format <http://publications.europa.eu/resource/authority/file-type/TIFF> ;
dct:license <http://publications.europa.eu/resource/authority/licence/CC_BY_4_0> ;
dct:rights [ a dct:RightsStatement ;
dct:description "The full noise contour maps data set is in principle only available for EEA internal use. A public version of the data set may in the future be available, excluding those data sets for which there is any limitation or restriction in their use (beyond acknowledgement)."@en ] ;
...
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
status:resolution-providedResolution statement present, not yet applied in draftResolution statement present, not yet applied in drafttype:bugThis is broken and to be fixedThis is broken and to be fixed