Skip to content

Commit e48d9d2

Browse files
committed
allow node type to be null
Signed-off-by: vsoch <[email protected]>
1 parent b64edec commit e48d9d2

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

python/state_machine_operator/schema.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,11 @@
9898
"additionalProperties": False,
9999
},
100100
"properties": {
101-
"type": "object",
102-
"properties": {"type": "object", "additionalProperties": True},
101+
"type": ["object", "null"],
102+
"properties": {
103+
"type": "object",
104+
"additionalProperties": True
105+
},
103106
},
104107
"config": {
105108
"type": "object",

0 commit comments

Comments
 (0)