Skip to content

Commit 04a6d8f

Browse files
committed
Add SHACL rule for profile conformsTo (#16)
1 parent 6d35212 commit 04a6d8f

1 file changed

Lines changed: 39 additions & 0 deletions

File tree

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Copyright (c) 2025 eScience Lab, The University of Manchester
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
@prefix ro: <./> .
16+
@prefix ro-crate: <https://github.com/crs4/rocrate-validator/profiles/ro-crate/> .
17+
@prefix five-safes-crate: <https://github.com/eScienceLab/rocrate-validator/profiles/five-safes-crate/> .
18+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
19+
@prefix schema: <http://schema.org/> .
20+
@prefix sh: <http://www.w3.org/ns/shacl#> .
21+
@prefix validator: <https://github.com/crs4/rocrate-validator/> .
22+
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
23+
24+
# Root Dataset SHOULD declare conformsTo Five Safes profile
25+
five-safes-crate:RootDatasetConformsToFiveSafes
26+
a sh:NodeShape ;
27+
sh:name "Root Dataset profile conformance" ;
28+
sh:description "The Root Data Entity (./) SHOULD declare conformsTo the Five Safes RO-Crate profile." ;
29+
# targets the RO-Crate Root Data Entity "./"
30+
sh:targetNode ro: ;
31+
sh:property [
32+
a sh:PropertyShape ;
33+
sh:name "conformsTo Five Safes profile" ;
34+
sh:description "Root Dataset SHOULD include schema:conformsTo https://w3id.org/5s-crate/0.4" ;
35+
sh:path schema:conformsTo ;
36+
sh:hasValue <https://w3id.org/5s-crate/0.4> ;
37+
sh:severity sh:Warning ;
38+
sh:message "Profile Conformance: Root Dataset SHOULD include schema:conformsTo with @id https://w3id.org/5s-crate/0.4" ;
39+
] .

0 commit comments

Comments
 (0)