fix: leanOptions in lakefile.toml schema (#9988)
This PR fixes a bug in the `lakefile.toml` schema where it would issue an invalid validation for multi-layer `leanOptions` .
This commit is contained in:
parent
24cafcd65d
commit
cab46ea3d1
1 changed files with 5 additions and 1 deletions
|
|
@ -8,9 +8,13 @@
|
|||
"type": [
|
||||
"string",
|
||||
"boolean",
|
||||
"integer"
|
||||
"integer",
|
||||
"object"
|
||||
],
|
||||
"minimum": 0,
|
||||
"additionalProperties": {
|
||||
"$ref": "#/definitions/leanOptionValue"
|
||||
},
|
||||
"description": "A `set_option` string / boolean / natural number configuration value."
|
||||
},
|
||||
"leanConfig": {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue