|
| 1 | +# Copyright (c) 2024-2025 CRS4 |
| 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 schema_org: <http://schema.org/> . |
| 19 | +@prefix sh: <http://www.w3.org/ns/shacl#> . |
| 20 | +@prefix bioschemas: <https://bioschemas.org/> . |
| 21 | + |
| 22 | +five-safes-crate:FundingBody a sh:NodeShape ; |
| 23 | + sh:name "Funding body Project" ; |
| 24 | + sh:description "Project which is funding this work" ; |
| 25 | + sh:targetClass schema_org:Project ; |
| 26 | + sh:property [ |
| 27 | + a sh:PropertyShape ; |
| 28 | + sh:name "Project Name" ; |
| 29 | + sh:description """Check if the Project Entity `name` (as specified by schema.org) |
| 30 | + to clearly identify the dataset and distinguish it from other projects.""" ; |
| 31 | + sh:minCount 1 ; |
| 32 | + sh:nodeKind sh:Literal ; |
| 33 | + sh:path schema_org:name; |
| 34 | + sh:message "The Project Entity MUST have a `name` property (as specified by schema.org)" ; |
| 35 | + ] . |
0 commit comments