Skip to content

Commit

Permalink
Merge branch 'BugFix-Issue-629' into unstable
Browse files Browse the repository at this point in the history
  • Loading branch information
ajnelson-nist committed Feb 26, 2025
2 parents 3802423 + d524b8e commit bd2b412
Show file tree
Hide file tree
Showing 5 changed files with 441 additions and 451 deletions.
52 changes: 29 additions & 23 deletions ontology/uco/action/action.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ action:Action
rdfs:comment "An action is something that may be done or performed."@en ;
owl:disjointWith core:Event ;
sh:property
action:Action-actionStatus-in-shape ,
[
sh:class action:Action ;
sh:nodeKind sh:IRI ;
Expand Down Expand Up @@ -113,20 +114,6 @@ action:Action
sh:path action:actionStatus ;
sh:severity sh:Warning ;
] ,
[
sh:in (
"Complete/Finish"
"Error"
"Fail"
"Ongoing"
"Pending"
"Success"
"Unknown"
) ;
sh:message "Value is not member of the vocabulary ActionStatusTypeVocab." ;
sh:path action:actionStatus ;
sh:severity sh:Info ;
] ,
[
sh:maxCount "1"^^xsd:integer ;
sh:nodeKind sh:Literal ;
Expand All @@ -136,6 +123,22 @@ action:Action
sh:targetClass action:Action ;
.

action:Action-actionStatus-in-shape
a sh:PropertyShape ;
sh:in (
"Complete/Finish"
"Error"
"Fail"
"Ongoing"
"Pending"
"Success"
"Unknown"
) ;
sh:message "Value is not member of the vocabulary ActionStatusTypeVocab." ;
sh:path action:actionStatus ;
sh:severity sh:Info ;
.

action:Action-disjointWith-Event-shape
a sh:NodeShape ;
sh:message "action:Action and core:Event are disjoint classes."@en ;
Expand Down Expand Up @@ -219,6 +222,7 @@ action:ActionFrequencyFacet
rdfs:label "ActionFrequencyFacet"@en ;
rdfs:comment "An action frequency facet is a grouping of characteristics unique to the frequency of occurrence for an action."@en ;
sh:property
action:ActionFrequencyFacet-trend-in-shape ,
[
sh:datatype xsd:decimal ;
sh:maxCount "1"^^xsd:integer ;
Expand Down Expand Up @@ -246,15 +250,6 @@ action:ActionFrequencyFacet
sh:path action:trend ;
sh:severity sh:Warning ;
] ,
[
sh:in (
"Decreasing"
"Increasing"
) ;
sh:message "Value is not member of the vocabulary TrendVocab." ;
sh:path action:trend ;
sh:severity sh:Info ;
] ,
[
sh:maxCount "1"^^xsd:integer ;
sh:minCount "1"^^xsd:integer ;
Expand All @@ -265,6 +260,17 @@ action:ActionFrequencyFacet
sh:targetClass action:ActionFrequencyFacet ;
.

action:ActionFrequencyFacet-trend-in-shape
a sh:PropertyShape ;
sh:in (
"Decreasing"
"Increasing"
) ;
sh:message "Value is not member of the vocabulary TrendVocab." ;
sh:path action:trend ;
sh:severity sh:Info ;
.

action:ActionLifecycle
a
owl:Class ,
Expand Down
Loading

0 comments on commit bd2b412

Please sign in to comment.