Skip to content

Commit

Permalink
add schemaVersion property
Browse files Browse the repository at this point in the history
  • Loading branch information
andrii-i committed Dec 17, 2024
1 parent b1343c9 commit e6f17c0
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions json-schema/workflow.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
"title": "Workflow",
"type": "object",
"properties": {
"schemaVersion": {
"type": "string",
"default": "0.0.1"
},
"tasks": {
"type": "array",
"items": {
Expand Down Expand Up @@ -31,7 +35,10 @@
"description": "Timezone for the schedule."
}
},
"required": ["tasks", "name"],
"required": [
"tasks",
"name"
],
"definitions": {
"Task": {
"type": "object",
Expand Down Expand Up @@ -95,7 +102,11 @@
"description": "DAG node ID of this task."
}
},
"required": ["input_uri", "name", "node_id"]
"required": [
"input_uri",
"name",
"node_id"
]
}
}
}
}

0 comments on commit e6f17c0

Please sign in to comment.