Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev' into feat/SOF-6875
Browse files Browse the repository at this point in the history
  • Loading branch information
seankwarren committed Aug 25, 2023
2 parents 5cf9696 + 5c029d6 commit 3725166
Show file tree
Hide file tree
Showing 4 changed files with 66 additions and 28 deletions.
56 changes: 28 additions & 28 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions schema/job/base.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,21 @@
"runtimeContext": {
"description": "Context variables that the job will have access to at runtime",
"type": "object"
},
"scopeTrack": {
"description": "history of the workflow scope on each update",
"type": "array",
"items": {
"type": "object",
"properties": {
"repetition": {
"type": "number"
},
"scope": {
"$ref": "../workflow/scope.json"
}
}
}
}
},
"required": [
Expand Down
20 changes: 20 additions & 0 deletions schema/workflow/scope.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"schemaId": "workflow/scope",
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "workflow scope schema",
"type": "object",
"properties": {
"global": {
"type": "object",
"additionalProperties": true
},
"local": {
"type": "object",
"additionalProperties": true
}
},
"required": [
"global",
"local"
]
}
3 changes: 3 additions & 0 deletions schema/workflow/unit.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
"allOf": [
{
"$ref": "../in_memory_entity/named_defaultable_runtime_items.json"
},
{
"$ref": "../system/tags.json"
}
],
"properties": {
Expand Down

0 comments on commit 3725166

Please sign in to comment.