From 6725998276b4bd11e63624b6c8189d293c87d276 Mon Sep 17 00:00:00 2001 From: EttoreM Date: Sun, 25 Jan 2026 09:02:43 +0000 Subject: [PATCH 1/2] Merged 11_workflow_execution_phase.tll files. --- .../11_workflow_execution_phase.ttl | 93 ++++++++++++++++++- .../may/11_workflow_execution_phase.ttl | 64 ------------- .../must/11_workflow_execution_phase.ttl | 64 ------------- 3 files changed, 91 insertions(+), 130 deletions(-) rename rocrate_validator/profiles/five-safes-crate/{should => }/11_workflow_execution_phase.ttl (50%) delete mode 100644 rocrate_validator/profiles/five-safes-crate/may/11_workflow_execution_phase.ttl delete mode 100644 rocrate_validator/profiles/five-safes-crate/must/11_workflow_execution_phase.ttl diff --git a/rocrate_validator/profiles/five-safes-crate/should/11_workflow_execution_phase.ttl b/rocrate_validator/profiles/five-safes-crate/11_workflow_execution_phase.ttl similarity index 50% rename from rocrate_validator/profiles/five-safes-crate/should/11_workflow_execution_phase.ttl rename to rocrate_validator/profiles/five-safes-crate/11_workflow_execution_phase.ttl index 0c152310..9e0f69de 100644 --- a/rocrate_validator/profiles/five-safes-crate/should/11_workflow_execution_phase.ttl +++ b/rocrate_validator/profiles/five-safes-crate/11_workflow_execution_phase.ttl @@ -23,12 +23,58 @@ @prefix xsd: . +#=== MUST shapes ===# + +five-safes-crate:WorkflowMustHaveDescriptiveName + a sh:NodeShape ; + sh:name "WorkflowExecution" ; + sh:targetClass schema:CreateAction ; + + sh:property [ + a sh:PropertyShape ; + sh:name "name" ; + sh:minCount 1 ; + sh:description "Workflow (CreateAction) MUST have a name string of at least 10 characters." ; + sh:path schema:name ; + sh:datatype xsd:string ; + sh:minLength 10 ; + sh:severity sh:Violation ; + sh:message "Workflow (CreateAction) MUST have a name string of at least 10 characters." ; + ] . + + + + +five-safes-crate:WorkflowMustHaveActionStatusWithAllowedValues + a sh:NodeShape ; + sh:name "WorkflowExecution" ; + sh:targetClass schema:CreateAction ; + sh:property [ + a sh:PropertyShape ; + sh:minCount 1 ; + sh:name "actionStatus" ; + sh:description "WorkflowExecution MUST have an actionStatus with an allowed value (see https://schema.org/ActionStatusType)." ; + sh:path schema:actionStatus ; + sh:in ( + "http://schema.org/PotentialActionStatus" + "http://schema.org/ActiveActionStatus" + "http://schema.org/CompletedActionStatus" + "http://schema.org/FailedActionStatus" + ) ; + sh:severity sh:Violation ; + sh:message "WorkflowExecution MUST have an actionStatus with an allowed value (see https://schema.org/ActionStatusType)." ; + ] . + + +#=== SHOUD sgapes ===# five-safes-crate:RootDataEntityShouldMentionWorkflow a sh:NodeShape ; sh:name "RootDataEntity" ; sh:description "RootDataEntity SHOULD mention workflow execution object (typed CreateAction)." ; sh:targetClass ro-crate:RootDataEntity ; + sh:severity sh:Warning ; + sh:sparql [ a sh:SPARQLConstraint ; sh:name "mentions" ; @@ -44,7 +90,6 @@ five-safes-crate:RootDataEntityShouldMentionWorkflow } } """ ; - sh:severity sh:Warning ; sh:message "RootDataEntity SHOULD mention workflow execution object (typed CreateAction)." ; ] . @@ -82,4 +127,48 @@ five-safes-crate:WorkflowexecutionObjectHasEndTimeIfEnded sh:severity sh:Warning ; sh:description "The workflow execution object SHOULD have an endTime property if it has ended." ; sh:message "The workflow execution object SHOULD have an endTime property if it has ended." ; - ] . \ No newline at end of file + ] . + + +#=== MAY shapes ===# + +five-safes-crate:WorkflowexecutionObjectHasStartTimeIfBegun + a sh:NodeShape ; + sh:name "WorkflowExecution" ; + sh:description ( + "The workflow execution object MAY have a startTime if actionStatus is " + "either ActiveActionStatus, CompletedActionStatus or FailedActionStatus." + ) ; + + sh:target [ + a sh:SPARQLTarget ; + sh:select """ + PREFIX schema: + PREFIX rdf: + + SELECT ?this + WHERE { + ?this rdf:type schema:CreateAction ; + schema:actionStatus ?status . + FILTER(?status IN ( + "http://schema.org/CompletedActionStatus", + "http://schema.org/FailedActionStatus", + "http://schema.org/ActiveActionStatus" + )) + } + """ ; + ] ; + + sh:property [ + a sh:PropertyShape ; + sh:name "StartTime" ; + sh:path schema:startTime ; + sh:minCount 1 ; + sh:maxCount 1 ; + sh:severity sh:Info ; + sh:description ( + "The workflow execution object MAY have a startTime if actionStatus is " + "either ActiveActionStatus, CompletedActionStatus or FailedActionStatus." + ) ; + sh:message "The workflow execution object MAY have a startTime if actionStatus is either ActiveActionStatus, CompletedActionStatus or FailedActionStatus." ; + ] . diff --git a/rocrate_validator/profiles/five-safes-crate/may/11_workflow_execution_phase.ttl b/rocrate_validator/profiles/five-safes-crate/may/11_workflow_execution_phase.ttl deleted file mode 100644 index 6c331913..00000000 --- a/rocrate_validator/profiles/five-safes-crate/may/11_workflow_execution_phase.ttl +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright (c) 2025 eScience Lab, The University of Manchester -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -@prefix ro: <./> . -@prefix ro-crate: . -@prefix five-safes-crate: . -@prefix rdf: . -@prefix schema: . -@prefix sh: . -@prefix validator: . -@prefix xsd: . - - -five-safes-crate:WorkflowexecutionObjectHasStartTimeIfBegun - a sh:NodeShape ; - sh:name "WorkflowExecution" ; - sh:description ( - "The workflow execution object MAY have a startTime if actionStatus is " - "either ActiveActionStatus, CompletedActionStatus or FailedActionStatus." - ) ; - - sh:target [ - a sh:SPARQLTarget ; - sh:select """ - PREFIX schema: - PREFIX rdf: - - SELECT ?this - WHERE { - ?this rdf:type schema:CreateAction ; - schema:actionStatus ?status . - FILTER(?status IN ( - "http://schema.org/CompletedActionStatus", - "http://schema.org/FailedActionStatus", - "http://schema.org/ActiveActionStatus" - )) - } - """ ; - ] ; - - sh:property [ - a sh:PropertyShape ; - sh:name "StartTime" ; - sh:path schema:startTime ; - sh:minCount 1 ; - sh:maxCount 1 ; - sh:severity sh:Info ; - sh:description ( - "The workflow execution object MAY have a startTime if actionStatus is " - "either ActiveActionStatus, CompletedActionStatus or FailedActionStatus." - ) ; - sh:message "The workflow execution object MAY have a startTime if actionStatus is either ActiveActionStatus, CompletedActionStatus or FailedActionStatus." ; - ] . diff --git a/rocrate_validator/profiles/five-safes-crate/must/11_workflow_execution_phase.ttl b/rocrate_validator/profiles/five-safes-crate/must/11_workflow_execution_phase.ttl deleted file mode 100644 index 2f723c93..00000000 --- a/rocrate_validator/profiles/five-safes-crate/must/11_workflow_execution_phase.ttl +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright (c) 2025 eScience Lab, The University of Manchester -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -@prefix ro: <./> . -@prefix ro-crate: . -@prefix five-safes-crate: . -@prefix rdf: . -@prefix schema: . -@prefix purl: . -@prefix sh: . -@prefix validator: . -@prefix xsd: . - - -five-safes-crate:WorkflowMustHaveDescriptiveName - a sh:NodeShape ; - sh:name "WorkflowExecution" ; - sh:targetClass schema:CreateAction ; - - sh:property [ - a sh:PropertyShape ; - sh:name "name" ; - sh:minCount 1 ; - sh:description "Workflow (CreateAction) MUST have a name string of at least 10 characters." ; - sh:path schema:name ; - sh:datatype xsd:string ; - sh:minLength 10 ; - sh:severity sh:Violation ; - sh:message "Workflow (CreateAction) MUST have a name string of at least 10 characters." ; - ] . - - - - -five-safes-crate:WorkflowMustHaveActionStatusWithAllowedValues - a sh:NodeShape ; - sh:name "WorkflowExecution" ; - sh:targetClass schema:CreateAction ; - sh:property [ - a sh:PropertyShape ; - sh:minCount 1 ; - sh:name "actionStatus" ; - sh:description "WorkflowExecution MUST have an actionStatus with an allowed value (see https://schema.org/ActionStatusType)." ; - sh:path schema:actionStatus ; - sh:in ( - "http://schema.org/PotentialActionStatus" - "http://schema.org/ActiveActionStatus" - "http://schema.org/CompletedActionStatus" - "http://schema.org/FailedActionStatus" - ) ; - sh:severity sh:Violation ; - sh:message "WorkflowExecution MUST have an actionStatus with an allowed value (see https://schema.org/ActionStatusType)." ; - ] . From 7d9756ebb0e73b72e82bbe44dd3aa473776cb9bd Mon Sep 17 00:00:00 2001 From: EttoreM Date: Sun, 25 Jan 2026 09:05:43 +0000 Subject: [PATCH 2/2] Merged 11_workflow_execution_phase.tll files - fixed lint. --- .../five-safes-crate/11_workflow_execution_phase.ttl | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/rocrate_validator/profiles/five-safes-crate/11_workflow_execution_phase.ttl b/rocrate_validator/profiles/five-safes-crate/11_workflow_execution_phase.ttl index 9e0f69de..303cfa62 100644 --- a/rocrate_validator/profiles/five-safes-crate/11_workflow_execution_phase.ttl +++ b/rocrate_validator/profiles/five-safes-crate/11_workflow_execution_phase.ttl @@ -43,8 +43,6 @@ five-safes-crate:WorkflowMustHaveDescriptiveName ] . - - five-safes-crate:WorkflowMustHaveActionStatusWithAllowedValues a sh:NodeShape ; sh:name "WorkflowExecution" ; @@ -66,7 +64,7 @@ five-safes-crate:WorkflowMustHaveActionStatusWithAllowedValues ] . -#=== SHOUD sgapes ===# +#=== SHOULD shapes ===# five-safes-crate:RootDataEntityShouldMentionWorkflow a sh:NodeShape ; @@ -74,7 +72,7 @@ five-safes-crate:RootDataEntityShouldMentionWorkflow sh:description "RootDataEntity SHOULD mention workflow execution object (typed CreateAction)." ; sh:targetClass ro-crate:RootDataEntity ; sh:severity sh:Warning ; - + sh:sparql [ a sh:SPARQLConstraint ; sh:name "mentions" ; @@ -94,7 +92,6 @@ five-safes-crate:RootDataEntityShouldMentionWorkflow ] . - five-safes-crate:WorkflowexecutionObjectHasEndTimeIfEnded a sh:NodeShape ; sh:name "WorkflowExecution" ;