mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[ML] Fixing schema for custom rule conditions (#74676)
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
This commit is contained in:
parent
01d8f00b50
commit
8d9bafeb57
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ const customRulesSchema = schema.maybe(
|
|||
schema.maybe(
|
||||
schema.object({
|
||||
actions: schema.arrayOf(schema.string()),
|
||||
conditions: schema.arrayOf(schema.any()),
|
||||
conditions: schema.maybe(schema.arrayOf(schema.any())),
|
||||
scope: schema.maybe(schema.any()),
|
||||
})
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue