|
| 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 purl: <http://purl.org/dc/terms/> . |
| 21 | +@prefix sh: <http://www.w3.org/ns/shacl#> . |
| 22 | +@prefix validator: <https://github.com/crs4/rocrate-validator/> . |
| 23 | +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . |
| 24 | + |
| 25 | + |
| 26 | +five-safes-crate:DownloadActionMayHaveStartTimeIfBegun |
| 27 | + a sh:NodeShape ; |
| 28 | + sh:name "ValidationCheck" ; |
| 29 | + sh:description "" ; |
| 30 | + sh:target [ |
| 31 | + a sh:SPARQLTarget ; |
| 32 | + sh:select """ |
| 33 | + PREFIX schema: <http://schema.org/> |
| 34 | + PREFIX shp: <https://w3id.org/shp#> |
| 35 | + SELECT ?this |
| 36 | + WHERE { |
| 37 | + ?this schema:additionalType shp:ValidationCheck ; |
| 38 | + schema:actionStatus ?status . |
| 39 | + FILTER(?status IN ( |
| 40 | + "http://schema.org/CompletedActionStatus", |
| 41 | + "http://schema.org/FailedActionStatus", |
| 42 | + "http://schema.org/ActiveActionStatus" |
| 43 | + )) |
| 44 | + } |
| 45 | + """ ; |
| 46 | + ] ; |
| 47 | + |
| 48 | + sh:property [ |
| 49 | + a sh:PropertyShape ; |
| 50 | + sh:name "StartTime" ; |
| 51 | + sh:path schema:startTime ; |
| 52 | + sh:minCount 1 ; |
| 53 | + sh:maxCount 1 ; |
| 54 | + sh:severity sh:Info ; |
| 55 | + sh:description "ValidationCheck MAY have the `startTime` property if `actionStatus` is either ActiveActionStatus, CompletedActionStatus or FailedActionStatus." ; |
| 56 | + sh:message "ValidationCheck MAY have the `startTime` property if `actionStatus` is either ActiveActionStatus, CompletedActionStatus or FailedActionStatus." ; |
| 57 | + ] . |
0 commit comments