We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b7b0b9 commit 5f166e8Copy full SHA for 5f166e8
json-schema/workflow.schema.json renamed to src/schema/workflow.schema.json
@@ -1,9 +1,12 @@
1
{
2
"$schema": "http://json-schema.org/draft-07/schema#",
3
- "version": "0.0.1",
4
"title": "Workflow",
5
"type": "object",
6
"properties": {
+ "schemaVersion": {
7
+ "type": "string",
8
+ "default": "0.0.1"
9
+ },
10
"tasks": {
11
"type": "array",
12
"items": {
@@ -31,7 +34,10 @@
31
34
"description": "Timezone for the schedule."
32
35
}
33
36
},
- "required": ["tasks", "name"],
37
+ "required": [
38
+ "tasks",
39
+ "name"
40
+ ],
41
"definitions": {
42
"Task": {
43
@@ -95,7 +101,11 @@
95
101
"description": "DAG node ID of this task."
96
102
97
103
98
- "required": ["input_uri", "name", "node_id"]
104
105
+ "input_uri",
106
+ "name",
107
+ "node_id"
108
+ ]
99
109
100
110
-}
111
+}
0 commit comments