File tree Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change 49
49
"description" : " Workflow data input schema definition" ,
50
50
"properties" : {
51
51
"schema" : {
52
- "type" : " string" ,
53
- "description" : " URI of the JSON Schema used to validate the workflow data input" ,
54
- "minLength" : 1
52
+ "oneof" :[
53
+ {
54
+ "type" : " string" ,
55
+ "description" : " URI of the JSON Schema used to validate the workflow data input" ,
56
+ "minLength" : 1
57
+ },
58
+ {
59
+ "type" : " object" ,
60
+ "description" : " The JSON Schema object used to validate the workflow data input" ,
61
+ "$schema" : " http://json-schema.org/draft-07/schema#"
62
+ }
63
+ ]
55
64
},
56
65
"failOnValidationErrors" : {
57
66
"type" : " boolean" ,
61
70
},
62
71
"additionalProperties" : false ,
63
72
"required" : [
64
- " schema" ,
65
- " failOnValidationErrors"
73
+ " schema"
66
74
]
67
75
}
68
76
]
You can’t perform that action at this time.
0 commit comments