Skip to content

Commit 094ffbc

Browse files
committed
regenerate schema
Signed-off-by: Aaron Chong <aaronchong@google.com>
1 parent d0b3d35 commit 094ffbc

File tree

1 file changed

+17
-11
lines changed

1 file changed

+17
-11
lines changed

diagram.schema.json

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,27 @@
33
"title": "Diagram",
44
"type": "object",
55
"properties": {
6+
"description": {
7+
"description": "Optional text to describe the workflow.",
8+
"type": [
9+
"string",
10+
"null"
11+
]
12+
},
613
"default_trace": {
714
"description": "Whether the operations in the workflow should be traced by default.\n Being traced means each operation will emit an event each time it is\n triggered. You can decide whether that event contains the serialized\n message data that triggered the operation.\n\n If crossflow is not compiled with the \"trace\" feature then this\n setting will have no effect.",
815
"$ref": "#/$defs/TraceToggle"
916
},
17+
"example_inputs": {
18+
"description": "Examples of inputs that can be used with this workflow.",
19+
"type": [
20+
"array",
21+
"null"
22+
],
23+
"items": {
24+
"type": "string"
25+
}
26+
},
1027
"extensions": {
1128
"description": "Settings for each extension.",
1229
"type": "object",
@@ -46,17 +63,6 @@
4663
"version": {
4764
"description": "Version of the diagram, should always be `0.1.0`.",
4865
"type": "string"
49-
},
50-
"description": {
51-
"description": "Description of the diagram.",
52-
"type": "string"
53-
},
54-
"example_inputs": {
55-
"description": "Example inputs for this workflow.",
56-
"type": "array",
57-
"items": {
58-
"type": "string"
59-
}
6066
}
6167
},
6268
"required": [

0 commit comments

Comments
 (0)